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.

21 lines
406 B

using AMC.View.Views;
using AMC.ViewModel.ViewModels;
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)));
}
}