public async void OnAboutToolbarItemClicked(object sender, EventArgs args) { AboutPageViewModel aboutViewModel = new AboutPageViewModel(this.service); AboutPage aboutPage = new AboutPage(aboutViewModel); await Navigation.PushAsync(aboutPage); }
public AboutPage(AboutPageViewModel aboutViewModel) { InitializeComponent(); BindingContext = aboutViewModel; }