buildBottomNavigationBar method
Implementation
@override
Widget? buildBottomNavigationBar(BuildContext context) {
return BottomNavigationBar(
items: bottomItems.mapList((e) => BottomNavigationBarItem(icon: e.pageIconWidget(), label: e.pageLabel)),
currentIndex: selectedIndex,
type: BottomNavigationBarType.fixed,
onTap: updateIndex,
);
}