FLUTTER ECOSYSTEM

renefloor/side_header_list_view

स्टिकी हेडर वाला ListView, जैसे कि एंड्रॉइड संपर्क पृष्ठ

side_header_list_view प्रोजेक्ट कवर
Stars
205
Forks
26
अंतिम पुश (UTC)
12 मार्च 2021
प्रोजेक्ट स्थिति
सक्रिय
Rene Floor GitHub avatar
GITHUB User

Rene Floor ↗

Amersfoort, The Netherlands
भाषाएँDartObjective-CJava

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 3 आइटम
  • flutter{"sdk":"flutter"}
  • meta^1.1.6
  • testडेवलपमेंट^1.3.0

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

side_header_list_view

pub package Donate

Listview with sticky headers like the Android contact page

alt text

Usage

  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;
    },
  );