children: [
Flexible(child: Container(), flex: 3,),
Flexible(child: Container(), flex: 7),
],
3:7로 분할한다
children: [
Expanded(child: Container(), flex: 3,),
Container(width: 100,)
],
Expanded 가 flex를 1만큼 가진다 즉 전체 - 100
'앱 > Flutter(Dart)' 카테고리의 다른 글
[Flutter] floatingActionButton (0) | 2022.04.12 |
---|---|
[Flutter] ListView.builder (0) | 2022.04.12 |
[Flutter] Column 대신 ListView (0) | 2022.04.11 |
[Flutter] Custom widget (0) | 2022.04.10 |
[Flutter] Scaffold (1) | 2022.04.08 |
댓글