[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(), // 正文
      ),
    );
  }
}
posted @ 2021-06-01 15:06  comefromchina  阅读(62)  评论(0)    收藏  举报