Skip to content

IbneKayesh/CRM

Repository files navigation

#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)}"); }

About

MAUI CRM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages