AppTabs constructor
const
AppTabs({
- Key? key,
- required List<
AppTab> tabs, - required int selectedIndex,
- ValueChanged<
int> ? onChanged, - AppTabStyle style = AppTabStyle.primary,
Implementation
const AppTabs({
super.key,
required this.tabs,
required this.selectedIndex,
this.onChanged,
this.style = AppTabStyle.primary,
});