Flutter入门-03MaterialApp风格组件

一、首先创建一个组件(部件)

class Hello extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return Center(
      child: Text(
        ‘hello‘,
        textDirection: TextDirection.ltr,
        style: TextStyle(
          fontSize: 100.0,
          fontWeight: FontWeight.bold,
          color: Colors.blue,
        ),
      )
    );
  }
}

二、在App组件中添加Hello组件

class App extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return MaterialApp(
      home()
    );
  }
}

三、完整代码及调试

Flutter入门-03MaterialApp风格组件

 

Flutter入门-03MaterialApp风格组件

上一篇:Flutter入门-02第一个Flutter APP


下一篇:5周年了!关于Apple Watch设备起源,苹果设计师是这样说的