Tab Section#
TabSection #
TabSection(*tabs: Tab)
Organize dashboard content within tabs.
The TabSection class is a crucial part of a dashboard layout, allowing users to organize content within tabs.
Constructor for TabSection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tabs |
Tab
|
tabs to be added to tab section. |
()
|
Examples:#
Create a TabSection with different tabs
Tab #
Tab(
*,
label: TemplatedStringItem,
content: Union[LayoutItem, List[LayoutItem]],
icon: Optional[Union[Icons, WidgetField, str]] = None,
default_selected: bool = False
)
Represents an individual tab within a TabSection.
Constructor for Tab.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
label |
TemplatedStringItem
|
label to be displayed in tab. |
required |
content |
Union[LayoutItem, List[LayoutItem]]
|
item to be added in tab. |
required |
icon |
Optional[Union[Icons, WidgetField, str]]
|
tab icon. |
None
|
default_selected |
bool
|
set tab as default selected. |
False
|