TSeeAllView<T> constructor
TSeeAllView<T> ({
- Key? key,
- required String title,
- required List<
T> list, - required void onSeeAllClicked(),
- required Widget gridItemBuilder(
- BuildContext context,
- T item
- int showCount = 4,
- EdgeInsetsGeometry? margin,
- double fontSize = 11,
- double padding = 6,
- String moreTitle = 'More',
- Color? titleColor,
- double itemHeight = 200,
- double itemWidth = 160,
- bool showMoreButtonBottomPos = false,
Implementation
TSeeAllView({
super.key,
required this.title,
required this.list,
required 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.itemWidth = 160,
this.showMoreButtonBottomPos = false,
});