PhoenixBottomMenuUHF constructor

PhoenixBottomMenuUHF({
  1. Key? key,
  2. required List<NavBarItem> navBarItems,
  3. required dynamic onTabChange(
    1. int index
    ),
  4. Color? selectedTabColor,
  5. Color? unselectedTabColor,
  6. double? elevation,
  7. Color? backgroundColor,
  8. BottomNavigationBarType? bottomNavBarType,
  9. double? iconSize = 25,
  10. int? selectedIndex,
})

Implementation

PhoenixBottomMenuUHF({
  Key? key,
  required this.navBarItems,
  required this.onTabChange,
  this.selectedTabColor,
  this.unselectedTabColor,
  this.elevation,
  this.backgroundColor,
  this.bottomNavBarType,
  this.iconSize = 25,
  this.selectedIndex,
}) : super(key: key);