Scaffold 翻译过来就是脚手架的意思,它实现了基本的 Material Design 可视化布局结构。此类提供了用于显示drawer、snackbar和底部sheet的API。简单的说,Scaffold就是一个提供 Material Design 设计中基本布局的 widget。
Scaffold({
Key key,
this.appBar,
this.body,undefined this.floatingActionButton,
this.floatingActionButtonLocation,
this.floatingActionButtonAnimator,
this.persistentFooterButtons,
this.drawer,
this.endDrawer,
this.bottomNavigationBar,
this.bottomSheet,
this.backgroundColor,
this.resizeToAvoidBottomPadding = true,
this.primary = true,
})
appBar: AppBar(
title: Text(
"Flutter Demo"
),
),
body: Center(
child: Text(
'Hello Flutter'
),
),
drawer: Drawer(
child: Center(
child: Text('Drawer'),
),
),
bottomNavigationBar: new BottomNavigationBar(
currentIndex: 1,//默认选中的位置
fixedColor: Colors.green,//选中的颜色
items:<BottomNavigationBarItem>
new BottomNavigationBarItem(
icon:new Icon(
Icons.airplay,
),
title: new Text(
'主页',
),
),
......
,
),
floatingActionButton: FloatingActionButton(
onPressed: (){},
child: Text('点击'),
),
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。