DEV/flutter (dart)
Flutter ListView 위젯 예시 with ListTile
석봉
2023. 1. 31. 15:28
Flutter에서 스크롤이 있는 리스트 형식으로 데이터를 뿌려줄 때 사용할 수 있는 위젯 ListView
// 목록(리스트), 스크롤이 생김!
ListView(
children: [
ListTile(
// 대충 이미지, 아이콘 등...
leading: const Icon(Icons.account_circle),
title: Text('대충 이름'),
trailing: TextButton(),
)
]
)
ListTile은 가로로 항목을 배치할 때 유용하다.