CustomBottomBar constructor

const CustomBottomBar({
  1. Key? key,
  2. required List<BottomBarItem> items,
  3. required int currentIndex,
  4. required ValueChanged<int> onBottomTapped,
  5. bool showLabel = true,
})

Implementation

const CustomBottomBar({
  super.key,
  required this.items,
  required this.currentIndex,
  required this.onBottomTapped,
  this.showLabel = true,
});