Scaffold() 骨架
| 屬性 | 說明 |
|---|---|
| appBar | app標題 |
| body | 主要內容 |
| bottomNavigationBar | 底部導覽 |
| backgroundColor | 背景顏色 |
| floatingActionButton | 浮動按鈕 |

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
void main() {
runApp(MaterialApp(
title: 'Flutter Base',
theme: ThemeData(scaffoldBackgroundColor: Colors.blue),
home: Scaffold(
appBar: AppBar(
title: Text('AppBar'),
),
body: Container(
child: Center(
child: Text('Body'),
),
),
bottomNavigationBar: Container(
height: 50,
child: Center(
child: Text('Bottom Navigation Bar'),
),
),
),
));
}