WGrid constructor
WGrid({
- Key? key,
- required List<
Widget> list, - required int crossAxisCount,
- dynamic onSelected(
- int SelectedIndex
- double? childHeight,
- double? childWidth,
- double? mainAxisSpacing,
- double? rowSpaces,
- double? columnSpaces,
- double? crossAxisSpacing,
- AlignmentGeometry? childAlignment,
- DecorationImage? childBackGroundimage,
- BoxBorder? childBorder,
- List<
BoxShadow> ? childBoxShadow, - double? childCircularRadius,
- Color? childColor,
- Gradient? childGradient,
- 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});