Files
WorkTime/WorkTime.Mobile/App.xaml.cs
2025-11-12 17:06:14 +01:00

15 lines
358 B
C#

using MauiIcons.Core;
using Microsoft.Extensions.DependencyInjection;
namespace WorkTime.Mobile;
public partial class App : Application {
public App() {
InitializeComponent();
_ = new MauiIcon();
}
protected override Window CreateWindow(IActivationState? activationState) {
return new Window(new AppShell());
}
}