FespTabViewContainer constructor

const FespTabViewContainer({
  1. Key? key,
  2. required List<Widget> tabs,
  3. List<Widget>? children,
  4. double? tabHeight = 32,
  5. void onChange(
    1. TabController controller
    )?,
})

Implementation

const FespTabViewContainer({
  super.key,
  required this.tabs,
  this.children,
  this.tabHeight = 32,
  this.onChange,
});