SubZeroTabBar constructor

const SubZeroTabBar({
  1. Key? key,
  2. required TabController controller,
  3. required List<String> tabs,
  4. SubZeroTabVariant variant = SubZeroTabVariant.primary,
  5. bool isScrollable = false,
  6. ValueChanged<int>? onTap,
})

Implementation

const SubZeroTabBar({
  super.key,
  required this.controller,
  required this.tabs,
  this.variant = SubZeroTabVariant.primary,
  this.isScrollable = false,
  this.onTap,
});