KiteTabs constructor
const
KiteTabs({
- required List<
KiteTabItem> items, - Key? key,
- bool isScrollable = false,
- int initialIndex = 0,
- ValueChanged<
int> ? onChanged,
Implementation
const KiteTabs({
required this.items,
super.key,
this.isScrollable = false,
this.initialIndex = 0,
this.onChanged,
}) : assert(items.length > 0);