tabs static method
Widget
tabs(})
Implementation
static Widget tabs(
BuildContext ctx, {
required List<TTab<String>> tabs,
String? initialValue,
TTabController<String>? controller,
Widget? header,
String editTabLabel = 'Edit',
String editTabValue = '__edit__',
Widget Function(BuildContext)? editTabBuilder,
}) {
return TExpandedTabs(
tabs: tabs,
initialValue: initialValue,
controller: controller,
header: header,
editTabLabel: editTabLabel,
editTabValue: editTabValue,
editTabBuilder: editTabBuilder,
);
}