NavBottomBar constructor

NavBottomBar({
  1. Key? key,
  2. required List<NavIcon> children,
  3. required int currentIndex,
  4. IconData? bigIcon,
  5. ButtonPosition? buttonPosition = ButtonPosition.center,
  6. Color? backgroundColor,
  7. double? bottomBarHeight = 80,
  8. double? bottomBarWidth,
  9. double? bottomRadius = 35,
  10. bool showBigButton = true,
  11. dynamic btnOntap()?,
  12. Color? bigIconColor,
  13. BoxDecoration? decoration,
})

Implementation

NavBottomBar({
  Key? key,
  required this.children,
  required this.currentIndex,
  this.bigIcon,
  this.buttonPosition = ButtonPosition.center,
  this.backgroundColor,
  this.bottomBarHeight = 80,
  this.bottomBarWidth,
  this.bottomRadius = 35,
  this.showBigButton = true,
  this.btnOntap,
  this.bigIconColor,
  this.decoration,
}) : super(key: key);