diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml
new file mode 100644
index 00000000..f7c06b63
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml.cs
new file mode 100644
index 00000000..47bea05d
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace O2NextGen.AutoVisorApp;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml
new file mode 100644
index 00000000..6a5420a5
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml.cs
new file mode 100644
index 00000000..094ae44e
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace O2NextGen.AutoVisorApp;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml
new file mode 100644
index 00000000..de23c12e
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml.cs
new file mode 100644
index 00000000..b976f36e
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace O2NextGen.AutoVisorApp;
+
+public partial class MainPage : ContentPage
+{
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+}
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MauiProgram.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MauiProgram.cs
new file mode 100644
index 00000000..40026489
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/MauiProgram.cs
@@ -0,0 +1,19 @@
+namespace O2NextGen.AutoVisorApp;
+
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+ return builder.Build();
+ }
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.AutoVisorApp.csproj b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.AutoVisorApp.csproj
new file mode 100644
index 00000000..78cfef46
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.AutoVisorApp.csproj
@@ -0,0 +1,48 @@
+
+
+
+ net6.0-android;net6.0-ios;net6.0-maccatalyst
+ $(TargetFrameworks);net6.0-windows10.0.19041.0
+
+
+ Exe
+ O2NextGen.AutoVisorApp
+ true
+ true
+ enable
+
+
+ O2NextGen.AutoVisorApp
+
+
+ com.companyname.o2nextgen.autovisorapp
+ 12BA4FED-E5C1-4B0A-9631-381F46AAA78C
+
+
+ 1.0
+ 1
+
+ 14.2
+ 14.0
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.sln b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.sln
new file mode 100644
index 00000000..188bb8d7
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 17.0.31611.283
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "O2NextGen.AutoVisorApp", "O2NextGen.AutoVisorApp.csproj", "{A2AFB43B-73FD-4929-8478-0D87C1F3A71B}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A2AFB43B-73FD-4929-8478-0D87C1F3A71B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A2AFB43B-73FD-4929-8478-0D87C1F3A71B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A2AFB43B-73FD-4929-8478-0D87C1F3A71B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {A2AFB43B-73FD-4929-8478-0D87C1F3A71B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A2AFB43B-73FD-4929-8478-0D87C1F3A71B}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A2AFB43B-73FD-4929-8478-0D87C1F3A71B}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572}
+ EndGlobalSection
+EndGlobal
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/AndroidManifest.xml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 00000000..ddd284fb
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainActivity.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainActivity.cs
new file mode 100644
index 00000000..3c90fdb7
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace O2NextGen.AutoVisorApp;
+
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainApplication.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainApplication.cs
new file mode 100644
index 00000000..f31bfbad
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace O2NextGen.AutoVisorApp;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/Resources/values/colors.xml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 00000000..c2794f77
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,7 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/AppDelegate.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 00000000..6c4f57dc
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace O2NextGen.AutoVisorApp;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Info.plist b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 00000000..0690e472
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Program.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 00000000..e7b17315
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace O2NextGen.AutoVisorApp;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/Main.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/Main.cs
new file mode 100644
index 00000000..a479606a
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace O2NextGen.AutoVisorApp;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/tizen-manifest.xml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 00000000..6ccfa01c
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml
new file mode 100644
index 00000000..97260d46
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml.cs
new file mode 100644
index 00000000..d95453cb
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace O2NextGen.AutoVisorApp.WinUI;
+
+///
+/// Provides application-specific behavior to supplement the default Application class.
+///
+public partial class App : MauiWinUIApplication
+{
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/Package.appxmanifest b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 00000000..d3c20e0b
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/app.manifest b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/app.manifest
new file mode 100644
index 00000000..c0dab725
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/app.manifest
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/AppDelegate.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 00000000..6c4f57dc
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace O2NextGen.AutoVisorApp;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Info.plist b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Info.plist
new file mode 100644
index 00000000..358337bb
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Program.cs b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Program.cs
new file mode 100644
index 00000000..e7b17315
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace O2NextGen.AutoVisorApp;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Properties/launchSettings.json b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Properties/launchSettings.json
new file mode 100644
index 00000000..90f92d96
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appicon.svg b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appicon.svg
new file mode 100644
index 00000000..49f98005
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appicon.svg
@@ -0,0 +1,5 @@
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appiconfg.svg b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 00000000..e9b7139d
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Regular.ttf b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 00000000..6cbaf4b8
Binary files /dev/null and b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Semibold.ttf b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 00000000..554d68ad
Binary files /dev/null and b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Images/dotnet_bot.svg b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Images/dotnet_bot.svg
new file mode 100644
index 00000000..e19b0127
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,95 @@
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Raw/AboutAssets.txt b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Raw/AboutAssets.txt
new file mode 100644
index 00000000..808d6d3b
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,17 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Splash/splash.svg b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Splash/splash.svg
new file mode 100644
index 00000000..4b713836
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Splash/splash.svg
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Colors.xaml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Colors.xaml
new file mode 100644
index 00000000..e4a7a434
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
diff --git a/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Styles.xaml b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Styles.xaml
new file mode 100644
index 00000000..b88aed6e
--- /dev/null
+++ b/src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Styles.xaml
@@ -0,0 +1,385 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+