TabbedFolders constructor

const TabbedFolders({
  1. Key? key,
  2. required List<FolderTab> tabs,
  3. double selectedHeight = 34.0,
  4. double unselectedHeight = 26.0,
  5. double indicatorHeight = 4.0,
  6. double topPadding = 0.0,
  7. double verticalTabPadding = 2.0,
  8. TabAxisAlignment alignment = TabAxisAlignment.start,
  9. bool showContentBorder = true,
  10. bool disableContentAnimation = false,
  11. dynamic onTabChanged(
    1. int
    )?,
})

Implementation

const TabbedFolders({
  super.key,
  required this.tabs,
  this.selectedHeight = 34.0,
  this.unselectedHeight = 26.0,
  this.indicatorHeight = 4.0,
  this.topPadding = 0.0,
  this.verticalTabPadding = 2.0,
  this.alignment = TabAxisAlignment.start,
  this.showContentBorder = true,
  this.disableContentAnimation = false,
  this.onTabChanged,
});