ListViewRendering<T> constructor
const
ListViewRendering<T> ({
- Key? key,
- required double? itemExtent,
- required bool isLazyLoadingEnabled,
- required Widget itemBuilder(
- T item
- required List<
T> list, - required EdgeInsetsGeometry? padding,
- required ScrollPhysics? physics,
- required bool reverse,
- required ScrollController scrollController,
- required Axis scrollDirection,
- required bool shrinkWrap,
Implementation
const ListViewRendering({
Key? key,
required this.itemExtent,
required this.isLazyLoadingEnabled,
required this.itemBuilder,
required this.list,
required this.padding,
required this.physics,
required this.reverse,
required this.scrollController,
required this.scrollDirection,
required this.shrinkWrap,
}) : super(key: key);