13 lines
291 B
C#
13 lines
291 B
C#
using GreadyPoang.CommandClasses;
|
|
|
|
namespace GreadyPoang;
|
|
|
|
public partial class BasePage : ContentPage
|
|
{
|
|
public BasePage(View content, SplashViewModelCommands splashVm)
|
|
{
|
|
InitializeComponent();
|
|
MainContent.Content = content;
|
|
BindingContext = splashVm;
|
|
}
|
|
} |