buildBottomNavigationBar method

  1. @override
Widget? buildBottomNavigationBar(
  1. BuildContext context
)
override

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,
  );
}