AppBottomBar constructor

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

Implementation

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