FeedListView constructor
const
FeedListView({
- Key? key,
- bool usePrimaryScrollController = false,
- bool? disableScroll = false,
- bool compact = false,
- bool reverse = false,
- dynamic onLoad()?,
- required Widget builder(
- BuildContext context,
- int i,
- List items
- required ScrollController controller,
- WidgetWrapper? wrapper,
- Widget? loading,
- FeedGridViewDelegate? gridDelegate,
- ScrollPhysics? physics,
Implementation
const FeedListView({
Key? key,
this.usePrimaryScrollController = false,
this.disableScroll = false,
this.compact = false,
this.reverse = false,
this.onLoad,
required this.builder,
required this.controller,
this.footerHeight,
this.wrapper,
this.loading,
this.gridDelegate,
this.physics
}) : super(key: key);