ListView 는 리스트를 표시하는 위젯입니다.
ListView(
scrollDirection: Axis.vertical,
children: <Widget>[
ListTile(
leading: Icon(Icons.home),
title: Text('Home'),
trailing: Icon(Icons.navigate_next),
onTap: (){},
),
ListTile(
leading: Icon(Icons.event),
title : Text("Event"),
trailing: Icon(Icons.navigate_next),
onLongPress: (){},
),
ListTile(
leading: Icon(Icons.camera),
title: Text('Camera'),
trailing: Icon(Icons.navigate_next),
onTap: (){},
)
],
)
scrollDirection : 스크롤 하려는 방향입니다.
leading : listview의 item의 첫번째 시작하는 위젯
title : 말 그대로 title
trailing : item의 끝에 붙는 위젯
onTap, onLongPress : 클릭 이벤트
'개발 > 플러터' 카테고리의 다른 글
[플러터] AnimatedWidget에 대해서 ( 커스텀 애니메이션 위젯 ) (0) | 2020.05.04 |
---|---|
[플러터] BottomNavigationBar 에 대해서 (0) | 2020.05.02 |
[플러터] PageView 에 대해서 (0) | 2020.05.02 |
[플러터] Appbar 에 뒤로가기 버튼 만들기 (0) | 2020.05.02 |
[플러터] GridView 에 대해서 (0) | 2020.05.01 |
댓글