Last updated:
0 purchases
flutter sticky section list
flutter_sticky_section_list #
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),
),
)),
));
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.