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
397 B

using AD_MAUI.ViewModel;
using AD_MAUI.Views;
namespace AD_MAUI;
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)));
}
}