MaterialApp核心部件,相当于整个应用程序
//=> dart单行行数或方法的简写
void main() => runApp(Test());
class Test extends StatelessWidget{
@override
Widget build(BuildContext context) {
return new MaterialApp(
// home应用进入的首页,Scaffold整体布局
home: new Scaffold(
appBar: new AppBar(
title: new Text("chid test"),
),
body: new Center(
//所有布局widget都有一个child属性(例如Center或Container),或者一个 children属性
child: new Text("hello world",style: new TextStyle(fontSize: 32),),
),
),
);
}
}