MultiRButton constructor

MultiRButton({
  1. Key? key,
  2. required List list,
  3. required int crossAxisCount,
  4. required dynamic onChanged(
    1. dynamic SelectedValue
    ),
  5. double? mainAxisSpacing,
  6. double? rowSpaces,
  7. double? columnSpaces,
  8. double? crossAxisSpacing,
  9. AlignmentGeometry? childAlignment,
  10. DecorationImage? childBackGroundimage,
  11. BoxBorder? childBorder,
  12. List<BoxShadow>? childBoxShadow,
  13. double? childCircularRadius,
  14. Color? childColor,
  15. Gradient? childGradient,
  16. required double childHeight,
  17. EdgeInsetsGeometry? childPadding,
  18. double? childWidth,
  19. TextAlign? textAlign,
  20. Color? textColor,
  21. String? textFontFamily,
  22. double? textFontSize,
  23. FontWeight? textFontWeight,
  24. Color? activeColor,
  25. Color? hoverColor,
  26. Color? tileColor,
  27. bool? Scroll,
})

Implementation

MultiRButton(
    {super.key,
    required this.list,
    required this.crossAxisCount,
    required this.onChanged,
    this.mainAxisSpacing,
    this.rowSpaces,
    this.columnSpaces,
    this.crossAxisSpacing,
    this.childAlignment,
    this.childBackGroundimage,
    this.childBorder,
    this.childBoxShadow,
    this.childCircularRadius,
    this.childColor,
    this.childGradient,
    required this.childHeight,
    this.childPadding,
    this.childWidth,
    this.textAlign,
    this.textColor,
    this.textFontFamily,
    this.textFontSize,
    this.textFontWeight,
    this.activeColor,
    this.hoverColor,
    this.tileColor,
    this.Scroll});