TdTabs constructor

const TdTabs({
  1. Key? key,
  2. int initialIndex = 0,
  3. TdTabController? controller,
  4. bool isScrollable = false,
  5. required List<TdTabPanel> tabs,
})

Implementation

const TdTabs({
  super.key,
  this.initialIndex = 0,
  this.controller,
  this.isScrollable = false,
  required this.tabs,
});