GlobalBottomNavigationBar constructor

const GlobalBottomNavigationBar({
  1. required BottomNavigationTabNumber currentTab,
  2. List<BottomNavigationItem> navigationViews = const [],
  3. BottomNavigationBarType type = BottomNavigationBarType.shifting,
  4. required ValueChanged<BottomNavigationTabNumber> onSelectTab,
  5. required TickerProvider tickerProvider,
})

Implementation

const GlobalBottomNavigationBar({
  required this.currentTab,
  this.navigationViews = const [],
  this.type = BottomNavigationBarType.shifting,
  required this.onSelectTab,
  required this.tickerProvider,
});