TSeeAllView<T> constructor
const
TSeeAllView<T> ({
- Key? key,
- required String title,
- required List<
T> list, - OnSeeAllClickedCallback<
T> ? onSeeAllClicked, - required GridItemBuilderCallback<
T> gridItemBuilder, - int showCount = 4,
- EdgeInsetsGeometry? margin,
- double fontSize = 11,
- double padding = 6,
- String moreTitle = 'More',
- Color? titleColor,
- double itemHeight = 200,
- double viewHeight = 200,
- double itemWidth = 160,
- int? showLines = 1,
- double itemSpacing = 5,
- 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,
});