[Flutter-08] MaterialApp
MaterialApp
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( // 意味着整个应用采用Material 风格设计
home: Scaffold( // 脚手架、即搭建页面的基本结构
appBar: AppBar( //导航栏
title: Text('文本+图片'), // //导航栏标题
backgroundColor: Colors.black, // //导航栏背景颜色
),
body: HomeContent(), // 正文
),
);
}
}

浙公网安备 33010602011771号