Tabs
Tabbed content navigation component.
Installation
bash
flutter_studio add tabsbash
flutter pub add flutter_studioUsage
dart
CustomTabs(
tabs: ['Overview', 'Details', 'Reviews'],
children: [
OverviewTab(),
DetailsTab(),
ReviewsTab(),
],
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
tabs | List<String> | required | Tab labels |
children | List<Widget> | required | Tab content |
