From 4cc0ae598edb81d99c9d9c9f2da68cbf2ff93e56 Mon Sep 17 00:00:00 2001 From: Denis Prokharhcyk Date: Sat, 3 Sep 2022 21:33:54 +0300 Subject: [PATCH] feat(issue-407): add cross-platform app auto-visor-app --- .../O2NextGen.AutoVisorApp/App.xaml | 15 + .../O2NextGen.AutoVisorApp/App.xaml.cs | 12 + .../O2NextGen.AutoVisorApp/AppShell.xaml | 15 + .../O2NextGen.AutoVisorApp/AppShell.xaml.cs | 10 + .../O2NextGen.AutoVisorApp/MainPage.xaml | 42 ++ .../O2NextGen.AutoVisorApp/MainPage.xaml.cs | 25 ++ .../O2NextGen.AutoVisorApp/MauiProgram.cs | 19 + .../O2NextGen.AutoVisorApp.csproj | 48 +++ .../O2NextGen.AutoVisorApp/O2NextGen.sln | 27 ++ .../Platforms/Android/AndroidManifest.xml | 6 + .../Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 7 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../Platforms/MacCatalyst/Info.plist | 30 ++ .../Platforms/MacCatalyst/Program.cs | 16 + .../Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + .../Platforms/Windows/App.xaml | 9 + .../Platforms/Windows/App.xaml.cs | 25 ++ .../Platforms/Windows/Package.appxmanifest | 44 ++ .../Platforms/Windows/app.manifest | 16 + .../Platforms/iOS/AppDelegate.cs | 10 + .../Platforms/iOS/Info.plist | 32 ++ .../Platforms/iOS/Program.cs | 16 + .../Properties/launchSettings.json | 8 + .../Resources/AppIcon/appicon.svg | 5 + .../Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107152 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111048 bytes .../Resources/Images/dotnet_bot.svg | 95 +++++ .../Resources/Raw/AboutAssets.txt | 17 + .../Resources/Splash/splash.svg | 9 + .../Resources/Styles/Colors.xaml | 44 ++ .../Resources/Styles/Styles.xaml | 385 ++++++++++++++++++ 35 files changed, 1064 insertions(+) create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/App.xaml.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/AppShell.xaml.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/MainPage.xaml.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/MauiProgram.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.AutoVisorApp.csproj create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/O2NextGen.sln create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/AndroidManifest.xml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainActivity.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/MainApplication.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Android/Resources/values/colors.xml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Info.plist create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/MacCatalyst/Program.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/Main.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Tizen/tizen-manifest.xml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/App.xaml.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/Package.appxmanifest create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/Windows/app.manifest create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/AppDelegate.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Info.plist create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Platforms/iOS/Program.cs create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Properties/launchSettings.json create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appicon.svg create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/AppIcon/appiconfg.svg create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Images/dotnet_bot.svg create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Raw/AboutAssets.txt create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Splash/splash.svg create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Colors.xaml create mode 100644 src/CrossPlatformApps/O2NextGen.AutoVisorApp/Resources/Styles/Styles.xaml 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 @@ + + + + + + + + +