cancel
Showing results for 
Search instead for 
Did you mean: 
egregorich

Navigate between screens with the Power Apps TabList

The modern and updated TabList control can serve multiple purposes, such as changing views in a gallery, displaying and hiding sections on a screen, and more. One of its potential applications is to use it for simple screen-to-screen navigation. While there are other alternatives to the TabList control for screen navigation, it is still feasible. Here is how to use it:

 

Create your screen layout.

I'm not going into details for this part because everyone's layout may differ. My standard layout has a horizontal container as the outer container; I add two vertical containers inside it and adjust the width and padding as needed.

 

I'm using the Tab list as a Vertical navigation in this example, but you can certainly use it horizontally in your header.

 

Layout your Canvas app with containersLayout your Canvas app with containers

 

Repeat for multiple screens. In my example, I have 3 screens named "Screen 1", "Screen 2", and "Screen 3".

 

Create your navigation collection.

In this step, we will create our navigation collection. The nice thing about this approach is you can manage your navigation in one place, including which screens are selected. You can easily add a new screen to the collection.

In the App.OnStart property of your app, create your navigation collection. Copy the code below to get started. The Label is what I use to display to the user. The Screen property is the screen we navigate when clicking the tab. These properties can be named however you like.

 

Load your navigation collection.Load your navigation collection.

 

ClearCollect(
    colCustomNavigation,
    [
        {
            Label: "Screen 1",
            Screen: 'Screen 1'
        },
        {
            Label: "Screen 2",
            Screen: 'Screen 2'
        },
        {
            Label: "Screen 3",
            Screen: 'Screen 3'
        }
    ]
)

 

Enable Modern Controls

If you haven't already, you'll need to enable modern controls in your app. Click on Settings > Upcoming Features and search for "modern". Enable the Modern controls and themes feature.

 

Enable modern controls.Enable modern controls.

 

Add the TabList control to your screen.

Insert the modern Tab list control into your screen.

 

Add the TabList control to your screen.Add the TabList control to your screen.

 

Configure your Tab List control as you like. I have my setup as follows:

  • Items property = the collection you created earlier, e.g. colCustomNavigation.
  • Fields property = Select the Label and Screen fields.
  • Accessibility Label = "Navigation"
  • Size = Large
  • Alignment = Vertical
  • Font-Size = 15
  • Flexible Height = Yes.
Configure your TabList control.Configure your TabList control.

 

Configure navigation in your Tab List.

We want the user to be navigated to another screen when they select a tab in the Tab List control.

  • Select your Tab List control.
  • Go to the OnSelect property.
  • Add the following code:
Set(varCurrentNav, Self.Selected);
Navigate(Self.Selected.Screen, ScreenTransition.Fade)

This will first set a global variable, varCurrentNav, to the selected tab. We'll use this soon. Then, it will navigate to the screen that is assigned to the selected tab in the collection. Pretty simple!

 

Configure your Default tab.

Next, we want to set your default tab in the Tab List. This will ensure when you navigate to another screen, it will show the tab representing that screen as selected.

  • Select your Tab list control.
  • Go to the DefaultSelectedItems property.
  • Add varCurrentNav to the formula bar. This is the name of the variable we're setting in the previous step.

 

Conclusion

The end result. Users can click the Tabs to navigate between screens.The end result. Users can click the Tabs to navigate between screens.

 

That should cover the basics for using the Tab List modern control to navigate between screens in your Canvas Power App. Let me know if you have any questions!