mirror of
https://github.com/noodlapp/noodl-docs.git
synced 2026-01-12 23:32:54 +01:00
Co-Authored-By: kotte <14197736+mrtamagotchi@users.noreply.github.com> Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com> Co-Authored-By: Tore Knudsen <18231882+torekndsn@users.noreply.github.com> Co-Authored-By: Michael Cartner <32543275+michaelcartner@users.noreply.github.com>
59 lines
1.3 KiB
Markdown
59 lines
1.3 KiB
Markdown
---
|
|
title: Tab Bar
|
|
hide_title: true
|
|
---
|
|
|
|
# Tab Bar
|
|
|
|
This prefab contains a tab bar component that you can use to create tab style navigation.
|
|
|
|
<div className="ndl-image-with-background l">
|
|
|
|

|
|
|
|
</div>
|
|
|
|
The simple way to use it is to drag it into your project and specify the tabs using the **Items** input.
|
|
|
|
```javascript
|
|
[
|
|
{
|
|
Label:"Tab 1",
|
|
Value:"1"
|
|
},
|
|
{
|
|
Label:"Tab 2",
|
|
Value:"2"
|
|
},
|
|
{
|
|
Label:"Tab 3",
|
|
Value:"3"
|
|
},
|
|
]
|
|
```
|
|
|
|
You simply provide a **Label** and a **Value** for each tab. The output **Selected Tab** will contain the value of the currently selected tab, and you can use it to mount / unount the different tab pages.
|
|
|
|
<div className="ndl-image-with-background l">
|
|
|
|

|
|
|
|
</div>
|
|
|
|
The example above uses a simple function node to create mount / unmount switches for each of the pages.
|
|
|
|
```javascript
|
|
Outputs.Tab1 = Inputs.SelectedTab==="1"
|
|
Outputs.Tab2 = Inputs.SelectedTab==="2"
|
|
Outputs.Tab3 = Inputs.SelectedTab==="3"
|
|
```
|
|
|
|
You can change the appearance of the tab bar by editing the child component **Tab Bar Item**.
|
|
<div className="ndl-image-with-background m">
|
|
|
|

|
|
|
|
</div>
|
|
|
|
|