In Power Apps, screen navigation is handled using the Navigate() function. It allows you to move between screens and optionally apply transition effects.
Syntax:
Navigate(TargetScreen, Transition [, UpdateContextRecord])
You can also pass data during navigation using the optional context record parameter. This enables transferring values such as user input or selected records to the target screen.


