TabbarWidget constructor

TabbarWidget({
  1. int selectedIndex = 0,
  2. Function? tabBarSelected,
  3. required Color tabBarBackgroundColor,
  4. required Color itemSelectedColor,
  5. required Color itemNormalColor,
  6. required List<IconData> tabIcons,
})

Implementation

TabbarWidget({
  this.selectedIndex = 0,
  this.tabBarSelected,
  required this.tabBarBackgroundColor,
  required this.itemSelectedColor,
  required this.itemNormalColor,
  required this.tabIcons,
});