TSeeAllView<T> constructor

const TSeeAllView<T>({
  1. Key? key,
  2. required String title,
  3. required List<T> list,
  4. OnSeeAllClickedCallback<T>? onSeeAllClicked,
  5. required GridItemBuilderCallback<T> gridItemBuilder,
  6. int showCount = 4,
  7. EdgeInsetsGeometry? margin,
  8. double fontSize = 11,
  9. double padding = 6,
  10. String moreTitle = 'More',
  11. Color? titleColor,
  12. double itemHeight = 200,
  13. double viewHeight = 200,
  14. double itemWidth = 160,
  15. int? showLines = 1,
  16. double itemSpacing = 5,
  17. bool showMoreButtonBottomPos = false,
})

Implementation

const TSeeAllView({
  super.key,
  required this.title,
  required this.list,
  this.onSeeAllClicked,
  required this.gridItemBuilder,
  this.showCount = 4,
  this.margin,
  this.fontSize = 11,
  this.padding = 6,
  this.moreTitle = 'More',
  this.titleColor,
  this.itemHeight = 200,
  this.viewHeight = 200,
  this.itemWidth = 160,
  this.showLines = 1,
  this.itemSpacing = 5,
  this.showMoreButtonBottomPos = false,
});