v0.0.4side_header_list_view
ListView mit haftenden Kopfzeilen an der Seite. Inspiriert von der Android-Kontakte-App und Kalender-App.
42Likes 2530-Tage-Downloads30Pub-Punkte
Keine Plattformdaten
ListView mit haftenden Kopfzeilen wie auf der Kontaktpage des Android
Englischer Projektschnappschuss. Aktuelle Inhalte auf 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;
},
);