CustomTabBarView constructor

CustomTabBarView({
  1. required List<String> tabs_titles_list,
  2. required TabController tabController,
  3. required List<Widget> tab_children_layouts,
  4. BorderRadiusGeometry? borderRadius,
  5. bool? showTopShadow,
  6. bool? isScrollable,
  7. bool? removePadding,
})

Implementation

CustomTabBarView(
    {
    required this.tabs_titles_list,
    required this.tabController,
    required this.tab_children_layouts,
    this.borderRadius,
    this.showTopShadow,
    this.isScrollable,
    this.removePadding});