레이아웃 Scaffold
Scaffold(
appBar: AppBar(),
body: SizedBox(),
bottomNavigationBar: BottomAppBar()
),
스타일 주는 법
사이즈
Container(
width: 100, height: 100
),
너비 무한으로 주기
width: double.infinity
마진
margin: EdgeInsets.fromLTRB(10, 20, 30, 40)
그 외
decoration: BoxDecoration(
border: Border.all(color: Colors.black)
)
정렬
Center(
child:
),
Align(
alignment: Alignment.bottomLeft
),