GrcTabBar constructor

const GrcTabBar({
  1. Key? key,
  2. required List<String> tabs,
  3. required List<Widget> content,
  4. Style? style,
  5. Color? activeTabBackground,
  6. Color? tabBackground,
  7. TabBarAlignment? tabBarAlignment,
  8. TabBarPosition? tabBarPosition,
})

Implementation

const GrcTabBar(
    {super.key,
    required this.tabs,
    required this.content,
    this.style,
    this.activeTabBackground,
    this.tabBackground,
    this.tabBarAlignment,
    this.tabBarPosition});