FastListView<T extends FastItem> constructor
FastListView<T extends FastItem> ({
- Key? key,
- required List<
T> items, - EdgeInsets padding = EdgeInsets.zero,
- bool groupByCategory = false,
- bool showItemDivider = false,
- bool useDenseListItem = true,
- bool isViewScrollable = true,
- bool sortItems = true,
- bool isEnabled = true,
- EdgeInsets? itemContentPadding,
- FastListItemBuilder<
T> ? listItemBuilder, - List<
FastCategory> ? categories,
Implementation
FastListView({
Key? key,
required this.items,
this.padding = EdgeInsets.zero,
this.groupByCategory = false,
this.showItemDivider = false,
this.useDenseListItem = true,
this.isViewScrollable = true,
this.sortItems = true,
this.isEnabled = true,
this.itemContentPadding,
this.listItemBuilder,
this.categories,
}) : super(key: key);