18 lines
435 B
C#
18 lines
435 B
C#
using System;
|
|
using System.Windows.Input;
|
|
using Xamarin.Essentials;
|
|
using Xamarin.Forms;
|
|
|
|
namespace MyMobileApp.ViewModels
|
|
{
|
|
public class AboutViewModel : BaseViewModel
|
|
{
|
|
public AboutViewModel()
|
|
{
|
|
Title = "About";
|
|
OpenWebCommand = new Command(async () => await Browser.OpenAsync("https://aka.ms/xamarin-quickstart"));
|
|
}
|
|
|
|
public ICommand OpenWebCommand { get; }
|
|
}
|
|
} |