From e74df61ca0a364f84c3a365e720848ff24ceebd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20Iv=C3=A1n?= Date: Fri, 24 Jan 2025 14:37:21 +0100 Subject: [PATCH] NFC Test vol 1. --- src/WorkFlowCheck.MAUI/AppShell.xaml | 2 + src/WorkFlowCheck.MAUI/MainPage.xaml | 6 + src/WorkFlowCheck.MAUI/MainPage.xaml.cs | 4 + .../Pages/NFC/NFCTestPage.xaml | 12 ++ .../Pages/NFC/NFCTestPage.xaml.cs | 130 ++++++++++++++++++ .../Pages/Security/LoginPage.xaml.cs | 2 +- .../Platforms/Android/AndroidManifest.xml | 2 + .../Platforms/Android/MainActivity.cs | 23 ++++ .../WorkFlowCheck.MAUI.csproj | 3 + 9 files changed, 183 insertions(+), 1 deletion(-) create mode 100644 src/WorkFlowCheck.MAUI/Pages/NFC/NFCTestPage.xaml create mode 100644 src/WorkFlowCheck.MAUI/Pages/NFC/NFCTestPage.xaml.cs diff --git a/src/WorkFlowCheck.MAUI/AppShell.xaml b/src/WorkFlowCheck.MAUI/AppShell.xaml index a6ab65e..4a53744 100644 --- a/src/WorkFlowCheck.MAUI/AppShell.xaml +++ b/src/WorkFlowCheck.MAUI/AppShell.xaml @@ -5,10 +5,12 @@ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:WorkFlowCheck.MAUI" xmlns:security="clr-namespace:WorkFlowCheck.MAUI.Pages.Security" + xmlns:nfc="clr-namespace:WorkFlowCheck.MAUI.Pages.NFC" Shell.FlyoutBehavior="Disabled" Title="WorkFlowCheck.MAUI"> + diff --git a/src/WorkFlowCheck.MAUI/MainPage.xaml b/src/WorkFlowCheck.MAUI/MainPage.xaml index aac399c..2377a26 100644 --- a/src/WorkFlowCheck.MAUI/MainPage.xaml +++ b/src/WorkFlowCheck.MAUI/MainPage.xaml @@ -37,6 +37,12 @@ SemanticProperties.Hint="Counts the number of times you click" Clicked="OnCounterClicked" HorizontalOptions="Fill" /> +