NiceBottomNavigation constructor
- Key? key,
- required List<
NiceBottomNavItem> items, - required int currentIndex,
- required ValueChanged<
int> onTap, - bool showLabels = true,
Implementation
const NiceBottomNavigation({
super.key,
required this.items,
required this.currentIndex,
required this.onTap,
this.showLabels = true,
});