FastListView<T extends FastItem> constructor

const FastListView<T extends FastItem>({
  1. Key? key,
  2. required List<T> items,
  3. EdgeInsets padding = EdgeInsets.zero,
  4. bool groupByCategory = false,
  5. bool showItemDivider = false,
  6. bool useDenseListItem = true,
  7. bool isViewScrollable = true,
  8. bool sortItems = true,
  9. bool isEnabled = true,
  10. List<FastListItemCategory<T>> extraTabBuilder()?,
  11. EdgeInsets? itemContentPadding,
  12. FastListViewLayoutDelegate<T>? delegate,
  13. FastListItemBuilder<T>? listItemBuilder,
  14. List<FastCategory>? categories,
  15. Widget? emptyContent,
  16. String? emptyText,
})

Implementation

const FastListView({
  super.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.extraTabBuilder,
  this.itemContentPadding,
  this.delegate,
  this.listItemBuilder,
  this.categories,
  this.emptyContent,
  this.emptyText,
});