WGridBuilder constructor

WGridBuilder({
  1. Key? key,
  2. required Widget builder(
    1. int index
    ),
  3. required int itemCount,
  4. required int crossAxisCount,
  5. dynamic onSelected(
    1. int SelectedIndex
    )?,
  6. required double childHeight,
  7. double? childWidth,
  8. double? rowSpaces,
  9. double? columnSpaces,
  10. AlignmentGeometry? childAlignment,
  11. DecorationImage? childBackGroundimage,
  12. BoxBorder? childBorder,
  13. List<BoxShadow>? childBoxShadow,
  14. double? childCircularRadius,
  15. Color? childColor,
  16. Gradient? childGradient,
  17. EdgeInsetsGeometry? childPadding,
  18. bool? Scroll,
})

Implementation

WGridBuilder(
    {super.key,
    required this.builder,
    required this.itemCount,
    required this.crossAxisCount,
    this.onSelected,
    required this.childHeight,
    this.childWidth,
    this.rowSpaces,
    this.columnSpaces,
    this.childAlignment,
    this.childBackGroundimage,
    this.childBorder,
    this.childBoxShadow,
    this.childCircularRadius,
    this.childColor,
    this.childGradient,
    this.childPadding,
    this.Scroll});