11 lines
213 B
C#
11 lines
213 B
C#
namespace YMhut.Box.Mobile;
|
|
|
|
public sealed class App : Application
|
|
{
|
|
public App(IServiceProvider services)
|
|
{
|
|
UserAppTheme = AppTheme.Unspecified;
|
|
MainPage = new AppShell(services);
|
|
}
|
|
}
|