CLTabView constructor

const CLTabView({
  1. Key? key,
  2. required List<CLTabItem> clTabItems,
  3. String? title,
  4. Widget? titleWidget,
  5. bool showDivider = false,
  6. Color? indicatorColor,
  7. ValueChanged<int>? onTabChanged,
})

Implementation

const CLTabView({
  super.key,
  required this.clTabItems,
  this.title,
  this.titleWidget,
  this.showDivider = false,
  this.indicatorColor,
  this.onTabChanged,
});