#CRM MAUI
Study on going
//Routing with Back button
App.xaml.cs
Routing.RegisterRoute(nameof(HomePage), typeof(HomePage));
=> will navigate as
await Shell.Current.GoToAsync($"{nameof(HomePage)}");
//Routing without Back button
AppShell.xaml
=> will navigate as
await Shell.Current.GoToAsync($"//{nameof(HomePage)}");
Command Binding>> public ICommand LogOutCommand { private set; get; } public AppShellViewModel() { LogOutCommand = new Command( execute: () => { SignOut(); }); } async void SignOut() { await Shell.Current.GoToAsync($"//{nameof(LoginPage)}"); }