v0.0.4side_header_list_view
측면에 고정 헤더가 있는 ListView입니다. Android 연락처 앱과 캘린더 앱을 영감으로 하였습니다.
42좋아요 2530일 다운로드30Pub 점수
플랫폼 정보 없음
Android 연락처 페이지와 같이 스티키 헤더가 있는 ListView
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Listview with sticky headers like the Android contact page
alt text
new SideHeaderListView(
// Set how many items the list has
itemCount: items.length,
// Set the height of the item widgets. For now this has to be a fixed height
itemExtend: 150.0,
// Set the header builder, this needs to return the widget for the side header
headerBuilder: (BuildContext context, int index){
return new HeaderWidget(items[index].startDate);
},
// Set the item builder, this is everything in the row without the header
itemBuilder: (BuildContext context, int index){
return new ListItem(items[index]);
},
// HasSameHeader will be used to know whether the header has to be shown for a position
hasSameHeader: (int a, int b){
return items[a].day == items[b].day;
},
);