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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/FlowerStory/MainPage.xaml.cs b/FlowerStory/MainPage.xaml.cs
new file mode 100644
index 0000000..59cd59f
--- /dev/null
+++ b/FlowerStory/MainPage.xaml.cs
@@ -0,0 +1,24 @@
+namespace Blahblah.FlowerStory
+{
+ 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);
+ }
+ }
+}
\ No newline at end of file
diff --git a/FlowerStory/MauiProgram.cs b/FlowerStory/MauiProgram.cs
new file mode 100644
index 0000000..36476d4
--- /dev/null
+++ b/FlowerStory/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace Blahblah.FlowerStory
+{
+ 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");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
\ No newline at end of file
diff --git a/FlowerStory/Platforms/Android/AndroidManifest.xml b/FlowerStory/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/FlowerStory/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/FlowerStory/Platforms/Android/MainActivity.cs b/FlowerStory/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..3e2b316
--- /dev/null
+++ b/FlowerStory/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace Blahblah.FlowerStory
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
\ No newline at end of file
diff --git a/FlowerStory/Platforms/Android/MainApplication.cs b/FlowerStory/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..cbc40d8
--- /dev/null
+++ b/FlowerStory/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace Blahblah.FlowerStory
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/FlowerStory/Platforms/Android/Resources/values/colors.xml b/FlowerStory/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/FlowerStory/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/FlowerStory/Platforms/iOS/AppDelegate.cs b/FlowerStory/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..b6262a4
--- /dev/null
+++ b/FlowerStory/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Blahblah.FlowerStory
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/FlowerStory/Platforms/iOS/Info.plist b/FlowerStory/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/FlowerStory/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/FlowerStory/Platforms/iOS/Program.cs b/FlowerStory/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..b58c28a
--- /dev/null
+++ b/FlowerStory/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Blahblah.FlowerStory
+{
+ 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));
+ }
+ }
+}
\ No newline at end of file
diff --git a/FlowerStory/Resources/AppIcon/appicon.svg b/FlowerStory/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/FlowerStory/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/FlowerStory/Resources/AppIcon/appiconfg.svg b/FlowerStory/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/FlowerStory/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/FlowerStory/Resources/Fonts/OpenSans-Regular.ttf b/FlowerStory/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..5621cda
Binary files /dev/null and b/FlowerStory/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/FlowerStory/Resources/Fonts/OpenSans-Semibold.ttf b/FlowerStory/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..02508d6
Binary files /dev/null and b/FlowerStory/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/FlowerStory/Resources/Images/dotnet_bot.svg b/FlowerStory/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..abfaff2
--- /dev/null
+++ b/FlowerStory/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/FlowerStory/Resources/Raw/AboutAssets.txt b/FlowerStory/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/FlowerStory/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+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/FlowerStory/Resources/Splash/splash.svg b/FlowerStory/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/FlowerStory/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/FlowerStory/Resources/Styles/Colors.xaml b/FlowerStory/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/FlowerStory/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
+
+
\ No newline at end of file
diff --git a/FlowerStory/Resources/Styles/Styles.xaml b/FlowerStory/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..890ced0
--- /dev/null
+++ b/FlowerStory/Resources/Styles/Styles.xaml
@@ -0,0 +1,408 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+