Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 913 Bytes

File metadata and controls

30 lines (23 loc) · 913 Bytes

App.StartScreen

Table of Contents

This is a helpful canvas Power Apps code snippet.

Add This to Your Application

// ===================================================================================
// The following code is an example of how to implement "deep linking"
//      -Replace "QUERY_STRING_PARAMETER" with the parameter of your chioce
//      -Replace the string on the right side with what you want to match it with
//      -Pass the screen into the navigate function
// ===================================================================================
If(
    Param("QUERY_STRING_PARAMETER") = "QUERY_STRING_PARAMETER",
    'Loading Screen',
    'Loading Screen'
)

History

Date Author Changes
2026-01-27 Migration Initial TOC and history section added