ChipTabSwitcher constructor

const ChipTabSwitcher({
  1. Key? key,
  2. required List<String> tabs,
  3. TabController? controller,
  4. double visibleTabCount = 4.5,
  5. double minTabWidth = 56,
  6. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 16),
  7. double spacing = 8,
})

Implementation

const ChipTabSwitcher({
  super.key,
  required this.tabs,
  this.controller,
  this.visibleTabCount = 4.5,
  this.minTabWidth = 56,
  this.padding = const EdgeInsets.symmetric(horizontal: 16),
  this.spacing = 8,
});