CustomTabView constructor

CustomTabView({
  1. required int itemCount,
  2. required IndexedWidgetBuilder tabBuilder,
  3. required IndexedWidgetBuilder pageBuilder,
  4. Widget? stub,
  5. ValueChanged<int?>? onPositionChange,
  6. ValueChanged<double>? onScroll,
  7. int? initPosition,
  8. Color? indicatorColor,
  9. Color? labelColor,
})

Implementation

CustomTabView(
    {required this.itemCount,
    required this.tabBuilder,
    required this.pageBuilder,
    this.stub,
    this.onPositionChange,
    this.onScroll,
    this.initPosition,
    this.indicatorColor,
    this.labelColor});