NiceBottomNavigation constructor

const NiceBottomNavigation({
  1. Key? key,
  2. required List<NiceBottomNavItem> items,
  3. required int currentIndex,
  4. required ValueChanged<int> onTap,
  5. bool showLabels = true,
})

Implementation

const NiceBottomNavigation({
  super.key,
  required this.items,
  required this.currentIndex,
  required this.onTap,
  this.showLabels = true,
});