Files
EmptyMauiApp/MauiApp/App.xaml.cs
2023-10-18 19:02:51 +02:00

16 lines
312 B
C#

using MauiApp.Helpers;
namespace MauiApp;
public partial class App : Application
{
public App(IServiceProvider serviceProvider)
{
InitializeComponent();
var appShell = serviceProvider.GetService<AppShell>();
MainPage = appShell;
EntryHelper.RemoveBorders();
}
}