Adding final project to dev branch

This commit is contained in:
2025-12-19 18:53:21 -06:00
commit fd2ab3e14c
62 changed files with 4730 additions and 0 deletions

25
WguApp/App.xaml.cs Normal file
View File

@@ -0,0 +1,25 @@
using WguApp.Services;
using WguApp.Views;
namespace WguApp;
public partial class App : Application
{
private HomePage _homePage = new();
private NavigationPage _navPage;
public App()
{
InitializeComponent();
if (Current != null) Current.UserAppTheme = AppTheme.Dark;
_navPage = new NavigationPage(_homePage);
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(_navPage);
}
}