GNFocusedMenu constructor

const GNFocusedMenu({
  1. Key? key,
  2. required Widget child,
  3. required List<Widget> titles,
  4. required List<Icon> icons,
  5. required List<VoidCallback> functions,
  6. bool? openWithTap,
  7. Duration? duration,
  8. double? menuWidth,
  9. Color? backgroundColor,
  10. Function? focusedMenuHolderFunction,
  11. BoxDecoration? menuBoxDecoration,
  12. bool? animateMenuItems,
  13. double? bottomOffsetHeight,
  14. double? menuOffset,
  15. double? menuItemExtent,
  16. double? blurSize,
  17. Color? blurBackgroundColor,
})

Implementation

const GNFocusedMenu({
  super.key,
  required this.child,
  required this.titles,
  required this.icons,
  required this.functions,
  this.openWithTap,
  this.duration,
  this.menuWidth,
  this.backgroundColor,
  this.focusedMenuHolderFunction,
  this.menuBoxDecoration,
  this.animateMenuItems,
  this.bottomOffsetHeight,
  this.menuOffset,
  this.menuItemExtent,
  this.blurSize,
  this.blurBackgroundColor,
});