GridView 란 열 수를 지정하여 그리드 형태로 표시하는 위젯입니다.
GridView.count(crossAxisCount: 4,
children: <Widget>[
Container(
color: Colors.blue,
width: 100,
height: 100,
),
Container(
color: Colors.red,
width: 100,
height: 100,
),
Container(
color: Colors.green,
width: 100,
height: 100,
)
],
)
crossAxisCount : gridview 의 열(column) 개수입니다.
'개발 > 플러터' 카테고리의 다른 글
[플러터] AnimatedWidget에 대해서 ( 커스텀 애니메이션 위젯 ) (0) | 2020.05.04 |
---|---|
[플러터] BottomNavigationBar 에 대해서 (0) | 2020.05.02 |
[플러터] PageView 에 대해서 (0) | 2020.05.02 |
[플러터] Appbar 에 뒤로가기 버튼 만들기 (0) | 2020.05.02 |
[플러터] ListView 에 대해서 (0) | 2020.05.01 |
댓글