AntdTabPanel constructor

const AntdTabPanel({
  1. Key? key,
  2. AntdBoxStyle? style,
  3. AntdStyleBuilder<AntdBoxStyle, AntdTabPanel>? styleBuilder,
  4. required List<Widget> items,
  5. AntdScrollItemFit fit = AntdScrollItemFit.fill,
  6. bool virtual = false,
  7. ScrollPhysics? physics = const BouncingScrollPhysics(),
  8. AntdEdge? alignment = AntdEdge.center,
  9. bool vertical = false,
  10. AntdTabController<AntdTab>? tabController,
})

Implementation

const AntdTabPanel({
  super.key,
  super.style,
  super.styleBuilder,
  required super.items,
  super.fit = AntdScrollItemFit.fill,
  super.virtual,
  super.physics,
  super.alignment = AntdEdge.center,
  super.vertical = false,
  this.tabController,
});