AppGridView<T> constructor

const AppGridView<T>({
  1. Key? key,
  2. List<T>? listData,
  3. Function? child,
  4. Color? backgroundColor,
  5. int crossAxisCount = 3,
  6. double childHeight = 6,
  7. double childWidth = 3.5,
  8. double verticalPadding = 2.0,
  9. double horizontalPadding = 4.0,
  10. bool shrinkWrap = false,
  11. ScrollPhysics? physics,
})

Implementation

const AppGridView({
  super.key,
  this.listData,
  this.child,
  this.backgroundColor,
  this.crossAxisCount = 3,
  this.childHeight = 6,
  this.childWidth = 3.5,
  this.verticalPadding = 2.0,
  this.horizontalPadding = 4.0,
  this.shrinkWrap = false,
  this.physics,
});