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

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="WguApp.Views.TestPage"
Title="Test">
<ContentPage.Content>
<VerticalStackLayout Spacing="10">
<Button
Text="Test notification"
Clicked="TestBtn_OnClicked"/>
<Button Text="List scheduled notifications"
Clicked="ListNotifs_Clicked"/>
<Button Text="Clear all notifications"
Clicked="ClearAllNotifs_Clicked"/>
<Button Text="Test Share"
Clicked="ShareButton_OnClick"/>
<Button
Text="Add sample data"
Clicked="AddData_OnCLicked"></Button>
<Button Text="Delete data"
Clicked="Delete_OnClicked"/>
<Button Text="Test logger"
Clicked="TestLogger_Clicked"/>
<Button Text="Show log file"
Clicked="ShowLog_Clicked"/>
<Button Text="Clear Log"
Clicked="ClearLog_Clicked"/>
</VerticalStackLayout>
</ContentPage.Content>
</ContentPage>