- 数据逻辑处理
- 布局中的逻辑处理
- Flutter类型数据处理
一、数据逻辑处理
我们接触的每一个Flutter界面,大多由布局和逻辑相关的代码组成。如Flutter初始工程的Counting Demo的代码:
class _MyHomePageState extends State<MyHomePage> {// 变量 int _counter = 0; // 方法void _incrementCounter() {setState(() {_counter++;});}@overrideWidget build(BuildContext context) {return Scaffold(appBar: AppBar(title: Text(widget.title), // 外部参数),body: Center(child: Column(mainAxisAlignment: MainAxisAlignment.center,children: <Widget>[Text('You have pushed the button this many times:',),