ChipTabSwitcher constructor

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

Implementation

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