PowerApps - Show and auto-hide Welcome screen

Featured image

In this blog, we are going to explore how to show a welcome screen in your PowerApps and navigate to the main screen of the PowerApps automatically.

To do this we are going to utilize Timer control in PowerApps. The Timer control triggers the configured action to take place after the specified duration (in seconds).

In this demo app, we have two screens 1. Welcome screen and 2. Main page

Place Timer Control in the welcome screen

Place a Timer control in the welcome screen by Insert  ** Controls  ** Timer.

We are going to use the following key properties of Timer

Now place a textbox in the welcome screen and the Text with the below function.

``` {.bold .top-margin .black .h5} “You will be re-directed to main page in “ & RoundUp(10-CountDown.Value/1000, 0) &” seconds”

```

We are now finished with this and when you run this PowerApps, the welcome screen shown with time remaining and navigate to main page automatically.

Tips :