TabBarView constructor

const TabBarView({
  1. Key? key,
  2. required TabController controller,
  3. required List<Widget> children,
})

Creates a TabBarView with the given controller and children.

Implementation

const TabBarView({
  super.key,
  required this.controller,
  required this.children,
});