RadialMenu constructor

const RadialMenu({
  1. required BuildContext context,
  2. required dynamic onTapFloatingButtonLeft(),
  3. required dynamic onTapFloatingButtonRight(),
  4. required dynamic onTapFloatingButtonTop(),
  5. required AnimationController controller,
  6. required Animation floatingButtonLeftPosition,
  7. required Animation floatingButtonTopPosition,
  8. required Animation floatingButtonRightPosition,
  9. required Animation opacityButtom,
  10. required Animation scaleButtons,
  11. required FloatingButtonStyles floatingButtonStyles,
  12. Color? colorFloatingButtonLeft,
  13. Color? colorFloatingButtonTop,
  14. Color? colorFloatingButtonRight,
})

This method builds a radial menu on top of the central FloatingActionButton in the navBar

Implementation

const RadialMenu({
  required this.context,
  required this.onTapFloatingButtonLeft,
  required this.onTapFloatingButtonRight,
  required this.onTapFloatingButtonTop,
  required this.controller,
  required this.floatingButtonLeftPosition,
  required this.floatingButtonTopPosition,
  required this.floatingButtonRightPosition,
  required this.opacityButtom,
  required this.scaleButtons,
  required this.floatingButtonStyles,
  this.colorFloatingButtonLeft,
  this.colorFloatingButtonTop,
  this.colorFloatingButtonRight,
});