You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
373 B

using AMC.ViewModel;
namespace AMC.View;
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
// TODO use commands (or navigation methods?) in VMApp instead
private void OnRdmBtnClicked(object sender, EventArgs e)
{
Navigation.PushAsync(new AlbumPage(new AlbumViewModel(null)));
}
}