buildSliverList function
Implementation
Widget buildSliverList([int count = 5]) {
return SliverFixedExtentList(
itemExtent: 50,
delegate: SliverChildBuilderDelegate(
(context, index) {
return ListTile(
title: Text('$index'), onTap: () => debugPrint('$index'));
},
childCount: count,
),
);
}