【发布时间】:2018-03-09 04:16:52
【问题描述】:
我们可以使用 AppBar 小部件添加标题。
class HomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
leading: new Icon(Icons.mail),
title: new Text("Hello Flutter Header"),
),
body: new Center(
child: new MyButton(),
),
// **************************************
// I want to add application footer here
// **************************************
);
}
}
我们如何添加应用程序页脚?
【问题讨论】:
标签: flutter