Hi @Mupps
There are few ways to achieve having different tabs on same screen.
Here is how I do it in my apps.
in the Screen.OnVisible have this function:
If(
IsBlank(_ScreenTab),
UpdateContext({_ScreenTab:1})
)Add 2 (or more depending how many tabs you want) buttons.
Change the Button.OnSelect to:
UpdateContext({_ScreenTab:1})Change the number depending on the button so Button1 will have _ScreenTab:1, Button2 will have _ScreenTab:2
Add your content for the first tab on the screen. Select all items that belong to this tab. Add them to a group. Select the group and in the Group.Visible put the following:
If(
_ScreenTab = 1,
true,
false
)
Change the condition depending on which Group you are working with.
Now when you click your buttons only the required content will show on the screen for specific tab.