Skip to content

Instantly share code, notes, and snippets.

@azimuthdeveloper
Created September 20, 2021 01:51
Show Gist options
  • Save azimuthdeveloper/906f238a4e4a7faefa4bd243b9dd6597 to your computer and use it in GitHub Desktop.
Save azimuthdeveloper/906f238a4e4a7faefa4bd243b9dd6597 to your computer and use it in GitHub Desktop.
public class AboutViewModel : BaseViewModel
{
public AboutViewModel()
{
Title = "About";
OpenWebCommand = new Command(async () => await Browser.OpenAsync("https://aka.ms/xamarin-quickstart"));
}
public ICommand OpenWebCommand { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment