WGrid constructor

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

Implementation

WGrid(
    {super.key,
    required this.list,
    required this.crossAxisCount,
    this.onSelected,
    this.childHeight,
    this.childWidth,
    this.mainAxisSpacing,
    this.rowSpaces,
    this.columnSpaces,
    this.crossAxisSpacing,
    this.childAlignment,
    this.childBackGroundimage,
    this.childBorder,
    this.childBoxShadow,
    this.childCircularRadius,
    this.childColor,
    this.childGradient,
    this.childPadding});