CustomBottomBar constructor
const
CustomBottomBar({
- Key? key,
- required List<
BottomBarItem> items, - required int currentIndex,
- required ValueChanged<
int> onBottomTapped, - bool showLabel = true,
Implementation
const CustomBottomBar({
super.key,
required this.items,
required this.currentIndex,
required this.onBottomTapped,
this.showLabel = true,
});