美文网首页
从flutter的MaterialApp开始

从flutter的MaterialApp开始

作者: 萍水相逢_程序员 | 来源:发表于2018-11-15 10:10 被阅读0次

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),),
        ),
      ),

    );

  }


}

相关文章

网友评论

      本文标题:从flutter的MaterialApp开始

      本文链接:https://www.haomeiwen.com/subject/moaitqtx.html