class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(widget.title)),
body: Container(
// height: 100,
color: Colors.blue,
child: StickySectionList(
delegate: StickySectionListDelegate(
getSectionCount: () => 10,
getItemCount: (sectionIndex) => 10,
buildSection: (context, sectionIndex) => Container(
color: Colors.red,
child: Text("section:$sectionIndex"),
padding: EdgeInsets.all(10),
),
buildItem: (context, sectionIndex, itemIndex) => Container(
color: Colors.white,
child: Text("item:$itemIndex"),
padding: EdgeInsets.all(10),
),
)),
));
}
}-
Notifications
You must be signed in to change notification settings - Fork 2
flutter sticky section list
License
lazyee/flutter_sticky_section_list
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
flutter sticky section list
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
