NeoBottomNav constructor

const NeoBottomNav({
  1. Key? key,
  2. required List<NeoBottomNavItem> items,
  3. required int currentIndex,
  4. required ValueChanged<int> onChanged,
})

Implementation

const NeoBottomNav({
  super.key,
  required this.items,
  required this.currentIndex,
  required this.onChanged,
});