I need to go to the next page from my current page(WelcomeView). I use next syntax.
await NavigationService.NavigateAsync(new Uri("app:///WelcomeView/RegistrationView", UriKind.Absolute));
But it doesn't work. I still on my WelcomeView page. But if i write /WelcomeView/RegistrationView/LoginView app jump over the RegistrationView to the LoginView. How can I fix it? What am I doing wrong?