CustomTabBar constructor

const CustomTabBar({
  1. Key? key,
  2. required TabController tabController,
  3. required List<Tab> tabs,
  4. bool isScrollable = false,
})

Implementation

const CustomTabBar(
    {super.key,
    required this.tabController,
    required this.tabs,
    this.isScrollable = false});