Scaffold
该组件是页面结构的脚手架,包含了页面的基本组成单元,例如:
appBar【头部导航条区域】
body【页面主题内容区域】
- drawer【侧边栏抽屉区域】
- bottomNavigationBar【底部tabBar区域】
- floatingActionButton【右下角浮动按钮区域】
基本代码示例:
Scaffold(
appBar: AppBar(
title: Text('页面标题'),
),
body: Center(
child: Text('主体内容'),
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add),
),
drawer: Drawer(),
),
// 主题颜色
theme: ThemeData(primarySwatch: Colors.red),
)