AppBottomBar constructor

const AppBottomBar({
  1. Key? key,
  2. required List<BottomBarItem> tabs,
  3. required int selectedIndex,
  4. ValueChanged<int>? tabChangedCallback,
})

Implementation

const AppBottomBar(
    {super.key,
    required this.tabs,
    required this.selectedIndex,
    this.tabChangedCallback});