GrockFocusedMenuStyle constructor

GrockFocusedMenuStyle({
  1. double menuItemExtent = 56,
  2. double? menuItemWidth,
  3. double? leftSpace,
  4. double? rightSpace,
  5. bool isMenuItemAnimation = true,
  6. bool isScaleAnimation = false,
  7. int menuItemAnimationDurationExtent = 100,
  8. double menuSeperatedHeight = 0,
  9. Color menuSeperatedColor = Colors.grey,
  10. BorderRadiusGeometry? menuBorderRadius,
  11. Color? menuBackgroundColor,
})

Implementation

GrockFocusedMenuStyle({
  this.menuItemExtent = 56,
  this.menuItemWidth,

  /// Default value vhild width
  this.leftSpace,

  /// Default value MediaQuery.of(context).size.width * 0.4
  this.rightSpace,
  this.isMenuItemAnimation = true,
  this.isScaleAnimation = false,
  this.menuItemAnimationDurationExtent = 100,
  this.menuSeperatedHeight = 0,
  this.menuSeperatedColor = Colors.grey,
  this.menuBorderRadius,
  this.menuBackgroundColor,
});