From f4cb38642d526205f321cf56b060d9fd4a0e97a3 Mon Sep 17 00:00:00 2001 From: Tsanie Lily Date: Thu, 18 May 2023 12:37:05 +0800 Subject: [PATCH] initial version --- FlowerStory.sln | 27 ++ FlowerStory/App.xaml | 14 + FlowerStory/App.xaml.cs | 12 + FlowerStory/AppShell.xaml | 15 + FlowerStory/AppShell.xaml.cs | 10 + FlowerStory/FlowerStory.csproj | 53 +++ FlowerStory/MainPage.xaml | 41 ++ FlowerStory/MainPage.xaml.cs | 24 ++ FlowerStory/MauiProgram.cs | 25 ++ .../Platforms/Android/AndroidManifest.xml | 6 + FlowerStory/Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + FlowerStory/Platforms/iOS/AppDelegate.cs | 10 + FlowerStory/Platforms/iOS/Info.plist | 32 ++ FlowerStory/Platforms/iOS/Program.cs | 16 + FlowerStory/Resources/AppIcon/appicon.svg | 4 + FlowerStory/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107172 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111060 bytes FlowerStory/Resources/Images/dotnet_bot.svg | 93 ++++ FlowerStory/Resources/Raw/AboutAssets.txt | 15 + FlowerStory/Resources/Splash/splash.svg | 8 + FlowerStory/Resources/Styles/Colors.xaml | 44 ++ FlowerStory/Resources/Styles/Styles.xaml | 408 ++++++++++++++++++ 25 files changed, 898 insertions(+) create mode 100644 FlowerStory.sln create mode 100644 FlowerStory/App.xaml create mode 100644 FlowerStory/App.xaml.cs create mode 100644 FlowerStory/AppShell.xaml create mode 100644 FlowerStory/AppShell.xaml.cs create mode 100644 FlowerStory/FlowerStory.csproj create mode 100644 FlowerStory/MainPage.xaml create mode 100644 FlowerStory/MainPage.xaml.cs create mode 100644 FlowerStory/MauiProgram.cs create mode 100644 FlowerStory/Platforms/Android/AndroidManifest.xml create mode 100644 FlowerStory/Platforms/Android/MainActivity.cs create mode 100644 FlowerStory/Platforms/Android/MainApplication.cs create mode 100644 FlowerStory/Platforms/Android/Resources/values/colors.xml create mode 100644 FlowerStory/Platforms/iOS/AppDelegate.cs create mode 100644 FlowerStory/Platforms/iOS/Info.plist create mode 100644 FlowerStory/Platforms/iOS/Program.cs create mode 100644 FlowerStory/Resources/AppIcon/appicon.svg create mode 100644 FlowerStory/Resources/AppIcon/appiconfg.svg create mode 100644 FlowerStory/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 FlowerStory/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 FlowerStory/Resources/Images/dotnet_bot.svg create mode 100644 FlowerStory/Resources/Raw/AboutAssets.txt create mode 100644 FlowerStory/Resources/Splash/splash.svg create mode 100644 FlowerStory/Resources/Styles/Colors.xaml create mode 100644 FlowerStory/Resources/Styles/Styles.xaml diff --git a/FlowerStory.sln b/FlowerStory.sln new file mode 100644 index 0000000..8ef6516 --- /dev/null +++ b/FlowerStory.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.33711.374 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlowerStory", "FlowerStory\FlowerStory.csproj", "{A2EB9F7A-8BB8-4D6D-989C-21C6CF10CE4C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A2EB9F7A-8BB8-4D6D-989C-21C6CF10CE4C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A2EB9F7A-8BB8-4D6D-989C-21C6CF10CE4C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A2EB9F7A-8BB8-4D6D-989C-21C6CF10CE4C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {A2EB9F7A-8BB8-4D6D-989C-21C6CF10CE4C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A2EB9F7A-8BB8-4D6D-989C-21C6CF10CE4C}.Release|Any CPU.Build.0 = Release|Any CPU + {A2EB9F7A-8BB8-4D6D-989C-21C6CF10CE4C}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3E2B5E88-C1BF-40E5-87D9-8866AB79017E} + EndGlobalSection +EndGlobal diff --git a/FlowerStory/App.xaml b/FlowerStory/App.xaml new file mode 100644 index 0000000..d8a1a11 --- /dev/null +++ b/FlowerStory/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/FlowerStory/App.xaml.cs b/FlowerStory/App.xaml.cs new file mode 100644 index 0000000..96a05bd --- /dev/null +++ b/FlowerStory/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Blahblah.FlowerStory +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/FlowerStory/AppShell.xaml b/FlowerStory/AppShell.xaml new file mode 100644 index 0000000..9c115bf --- /dev/null +++ b/FlowerStory/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/FlowerStory/AppShell.xaml.cs b/FlowerStory/AppShell.xaml.cs new file mode 100644 index 0000000..ca1ba4d --- /dev/null +++ b/FlowerStory/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Blahblah.FlowerStory +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/FlowerStory/FlowerStory.csproj b/FlowerStory/FlowerStory.csproj new file mode 100644 index 0000000..d699d3f --- /dev/null +++ b/FlowerStory/FlowerStory.csproj @@ -0,0 +1,53 @@ + + + + net7.0-android;net7.0-ios + + Exe + Blahblah.FlowerStory + true + true + enable + + + + Flower Story + + + org.blahblah.flowerstory + 4a6f7f22-fb2a-4771-b257-8b94ab57ce2f + + + 1.0.518 + 1 + + 13.0 + 23.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/FlowerStory/MainPage.xaml b/FlowerStory/MainPage.xaml new file mode 100644 index 0000000..09dda56 --- /dev/null +++ b/FlowerStory/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +