SuperMasonryGridView<T> constructor
const
SuperMasonryGridView<T> ({
- Key? key,
- required SuperScrollController<
T> controller, - required SuperItemBuilder<
T> itemBuilder, - required int crossAxisCount,
- double mainAxisSpacing = 0.0,
- double crossAxisSpacing = 0.0,
- EdgeInsetsGeometry? padding,
- ScrollController? scrollController,
- ScrollPhysics? physics,
- bool shrinkWrap = false,
- bool reverse = false,
- Widget? newPageProgressIndicator,
- Widget? newPageErrorIndicator,
- Widget? noMoreItemsIndicator,
- Widget? firstPageProgressIndicator,
- Widget? noItemsFoundIndicator,
Implementation
const SuperMasonryGridView({
super.key,
required this.controller,
required this.itemBuilder,
required this.crossAxisCount,
this.mainAxisSpacing = 0.0,
this.crossAxisSpacing = 0.0,
this.padding,
this.scrollController,
this.physics,
this.shrinkWrap = false,
this.reverse = false,
this.newPageProgressIndicator,
this.newPageErrorIndicator,
this.noMoreItemsIndicator,
this.firstPageProgressIndicator,
this.noItemsFoundIndicator,
});