flutter_sticky_section_list

Last updated:

0 purchases

flutter_sticky_section_list Image
flutter_sticky_section_list Images
Add to Cart

Description:

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

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.