AppSegmentedTabBar constructor

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

Implementation

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