diff --git a/MyFirstMauiApp/FlyoutTabSearch/App.xaml b/MyFirstMauiApp/FlyoutTabSearch/App.xaml
new file mode 100644
index 0000000..860ba3a
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/App.xaml.cs b/MyFirstMauiApp/FlyoutTabSearch/App.xaml.cs
new file mode 100644
index 0000000..24d9746
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace FlyoutTabSearch
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/AppShell.xaml b/MyFirstMauiApp/FlyoutTabSearch/AppShell.xaml
new file mode 100644
index 0000000..bb1c393
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/AppShell.xaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+ moon.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/AppShell.xaml.cs b/MyFirstMauiApp/FlyoutTabSearch/AppShell.xaml.cs
new file mode 100644
index 0000000..2c8195c
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace FlyoutTabSearch
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Data/ILatLongService.cs b/MyFirstMauiApp/FlyoutTabSearch/Data/ILatLongService.cs
new file mode 100644
index 0000000..059fe79
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Data/ILatLongService.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace FlyoutTabSearch.Data
+{
+ public interface ILatLongService
+ {
+ Task<(double Latitude, double Longitude)> GetLatLong();
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Data/LatLongService.cs b/MyFirstMauiApp/FlyoutTabSearch/Data/LatLongService.cs
new file mode 100644
index 0000000..bb99327
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Data/LatLongService.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace FlyoutTabSearch.Data
+{
+ public class LatLongService : ILatLongService
+ {
+ public async Task<(double Latitude, double Longitude)> GetLatLong()
+ {
+ var latLoc = 0.0;
+ var longLoc = 0.0;
+
+ var status = await Permissions.RequestAsync();
+ if (status == PermissionStatus.Granted)
+ {
+ var request = new GeolocationRequest(GeolocationAccuracy.Default, TimeSpan.FromSeconds(10));
+ var location = await Geolocation.GetLocationAsync(request);
+ latLoc = location.Latitude;
+ longLoc = location.Longitude;
+ }
+ return (latLoc, longLoc);
+ }
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Data/MoonPhaseCalculator.cs b/MyFirstMauiApp/FlyoutTabSearch/Data/MoonPhaseCalculator.cs
new file mode 100644
index 0000000..a3371cd
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Data/MoonPhaseCalculator.cs
@@ -0,0 +1,52 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace FlyoutTabSearch.Data
+{
+ public class MoonPhaseCalculator
+ {
+ public enum Phase
+ {
+ New,
+ WaxingCrescent,
+ FirstQuarter,
+ WaxingGibbous,
+ Full,
+ WaningGibbous,
+ LastQuarter,
+ WaningCrescent,
+ }
+
+ static double synodicLength = 29.530588853; //length in days of a complete moon cycle
+ static DateTime referenceNewMoonDate = new DateTime(2017, 11, 18);
+
+ public static Phase GetPhase(DateTime date)
+ {
+ return GetPhase(GetAge(date));
+ }
+
+ static double GetAge(DateTime date)
+ {
+ double days = (date - referenceNewMoonDate).TotalDays;
+
+ return days % synodicLength;
+ }
+
+ static Phase GetPhase(double age)
+ {
+ if (age < 1) return Phase.New;
+ if (age < 7) return Phase.WaxingCrescent;
+ if (age < 8) return Phase.FirstQuarter;
+ if (age < 14) return Phase.WaxingGibbous;
+ if (age < 15) return Phase.Full;
+ if (age < 22) return Phase.WaningGibbous;
+ if (age < 23) return Phase.LastQuarter;
+ if (age < 29) return Phase.WaningCrescent;
+
+ return Phase.New;
+ }
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Data/SunriseService.cs b/MyFirstMauiApp/FlyoutTabSearch/Data/SunriseService.cs
new file mode 100644
index 0000000..432a544
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Data/SunriseService.cs
@@ -0,0 +1,46 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.Json;
+using System.Threading.Tasks;
+
+namespace FlyoutTabSearch.Data
+{
+ public class SunriseService
+ {
+ const string SunriseSunsetServiceUrl = "https://api.sunrise-sunset.org";
+
+ public async Task<(DateTime Sunrise, DateTime Sunset)> GetSunriseSunsetTimes(double latitude, double longitude)
+ {
+ var query = $"{SunriseSunsetServiceUrl}/json?lat={latitude}&lng={longitude}&date=today";
+
+ var client = new HttpClient();
+ client.DefaultRequestHeaders.Add("Accept", "application/json");
+ var json = await client.GetStringAsync(query);
+
+ var options = new JsonSerializerOptions { PropertyNameCaseInsensitive = true };
+ var data = JsonSerializer.Deserialize(json, options);
+
+ return (DateTime.Parse(data.Results.Sunrise), DateTime.Parse(data.Results.Sunset));
+ }
+
+ class SunriseSunsetData
+ {
+#pragma warning disable 0649
+ // Field is only set via JSON deserialization, so disable warning that the field is never set.
+ //public SunriseSunsetResults Results;
+ public SunriseSunsetResults Results { get; set; }
+#pragma warning restore 0649
+ }
+
+ class SunriseSunsetResults
+ {
+#pragma warning disable 0649
+ // Fields are only set via JSON deserialization, so disable warning that the fields are never set.
+ public string Sunrise { get; set; }
+ public string Sunset { get; set; }
+#pragma warning restore 0649
+ }
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/FlyoutTabSearch.csproj b/MyFirstMauiApp/FlyoutTabSearch/FlyoutTabSearch.csproj
new file mode 100644
index 0000000..5b2bff4
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/FlyoutTabSearch.csproj
@@ -0,0 +1,75 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ FlyoutTabSearch
+ true
+ true
+ enable
+
+
+ FlyoutTabSearch
+
+
+ com.companyname.flyouttabsearch
+ de294658-0b5e-4eb1-af79-f5fd62d4c454
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/MainPage.xaml b/MyFirstMauiApp/FlyoutTabSearch/MainPage.xaml
new file mode 100644
index 0000000..0ce36b7
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/MainPage.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/MainPage.xaml.cs b/MyFirstMauiApp/FlyoutTabSearch/MainPage.xaml.cs
new file mode 100644
index 0000000..9a8e25d
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace FlyoutTabSearch
+{
+ 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/MyFirstMauiApp/FlyoutTabSearch/MauiProgram.cs b/MyFirstMauiApp/FlyoutTabSearch/MauiProgram.cs
new file mode 100644
index 0000000..b0e7091
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace FlyoutTabSearch
+{
+ 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();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Pages/AboutPage.xaml b/MyFirstMauiApp/FlyoutTabSearch/Pages/AboutPage.xaml
new file mode 100644
index 0000000..b2fef06
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Pages/AboutPage.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Pages/AboutPage.xaml.cs b/MyFirstMauiApp/FlyoutTabSearch/Pages/AboutPage.xaml.cs
new file mode 100644
index 0000000..ed2b543
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Pages/AboutPage.xaml.cs
@@ -0,0 +1,9 @@
+namespace FlyoutTabSearch.Pages;
+
+public partial class AboutPage : ContentPage
+{
+ public AboutPage()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Pages/MoonPhasePage.xaml b/MyFirstMauiApp/FlyoutTabSearch/Pages/MoonPhasePage.xaml
new file mode 100644
index 0000000..3951557
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Pages/MoonPhasePage.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+ White
+ #44FFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Pages/MoonPhasePage.xaml.cs b/MyFirstMauiApp/FlyoutTabSearch/Pages/MoonPhasePage.xaml.cs
new file mode 100644
index 0000000..602fe4a
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Pages/MoonPhasePage.xaml.cs
@@ -0,0 +1,46 @@
+using FlyoutTabSearch.Data;
+
+namespace FlyoutTabSearch.Pages;
+
+public partial class MoonPhasePage : ContentPage
+{
+ public MoonPhasePage()
+ {
+ InitializeComponent();
+
+ InitializeUI();
+ }
+
+ private void InitializeUI()
+ {
+ var phase = MoonPhaseCalculator.GetPhase(DateTime.Now);
+
+ lblDate.Text = DateTime.Today.ToString("D");
+ lblMoonPhaseIcon.Text = moonPhaseEmojis[phase];
+ lblMoonPhaseText.Text = phase.ToString();
+
+ SetMoonPhaseLabels(lblPhaseIcon1, lblPhaseText1, 1);
+ SetMoonPhaseLabels(lblPhaseIcon2, lblPhaseText2, 2);
+ SetMoonPhaseLabels(lblPhaseIcon3, lblPhaseText3, 3);
+ SetMoonPhaseLabels(lblPhaseIcon4, lblPhaseText4, 4);
+ }
+
+ private void SetMoonPhaseLabels(Label lblIcon, Label lblText, int dayOffset)
+ {
+ var phase = MoonPhaseCalculator.GetPhase(DateTime.Now.AddDays(dayOffset));
+ lblIcon.Text = moonPhaseEmojis[phase];
+ lblText.Text = DateTime.Now.AddDays(dayOffset).DayOfWeek.ToString();
+ }
+
+ private static Dictionary moonPhaseEmojis = new Dictionary
+ {
+ { MoonPhaseCalculator.Phase.New, "🌑" },
+ { MoonPhaseCalculator.Phase.WaxingCrescent, "🌒" },
+ { MoonPhaseCalculator.Phase.FirstQuarter, "🌓" },
+ { MoonPhaseCalculator.Phase.WaxingGibbous, "🌔" },
+ { MoonPhaseCalculator.Phase.Full, "🌕" },
+ { MoonPhaseCalculator.Phase.WaningGibbous, "🌖" },
+ { MoonPhaseCalculator.Phase.LastQuarter, "🌗" },
+ { MoonPhaseCalculator.Phase.WaningCrescent, "🌘" },
+ };
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Pages/SunrisePage.xaml b/MyFirstMauiApp/FlyoutTabSearch/Pages/SunrisePage.xaml
new file mode 100644
index 0000000..7f26e15
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Pages/SunrisePage.xaml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Pages/SunrisePage.xaml.cs b/MyFirstMauiApp/FlyoutTabSearch/Pages/SunrisePage.xaml.cs
new file mode 100644
index 0000000..16d3bd7
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Pages/SunrisePage.xaml.cs
@@ -0,0 +1,44 @@
+using FlyoutTabSearch.Data;
+
+namespace FlyoutTabSearch.Pages;
+
+public partial class SunrisePage : ContentPage
+{
+ ILatLongService LatLongService { get; set; }
+
+ public SunrisePage()
+ {
+ InitializeComponent();
+ LatLongService = new LatLongService();
+
+ }
+
+ protected override async void OnAppearing()
+ {
+ base.OnAppearing();
+ activityWaiting.IsRunning = true;
+ var sunriseSunsetData = await GetSunriseSunsetData();
+ InitializeUI(sunriseSunsetData.Item1, sunriseSunsetData.Item2, sunriseSunsetData.Item3);
+ activityWaiting.IsRunning = false;
+ }
+
+ async Task<(DateTime, DateTime, TimeSpan)> GetSunriseSunsetData()
+ {
+
+ var latLongData = await LatLongService.GetLatLong();
+ var sunData = await new SunriseService().GetSunriseSunsetTimes(latLongData.Latitude, latLongData.Longitude);
+
+ var riseTime = sunData.Sunrise.ToLocalTime();
+ var setTime = sunData.Sunset.ToLocalTime();
+ var span = setTime.TimeOfDay - riseTime.TimeOfDay;
+ return (riseTime, setTime, span);
+ }
+
+ void InitializeUI(DateTime riseTime, DateTime setTime, TimeSpan span)
+ {
+ lblDate.Text = DateTime.Today.ToString("D");
+ lblSunrise.Text = riseTime.ToString("h:mm tt");
+ lblDaylight.Text = $"{span.Hours} hours, {span.Minutes} minutes";
+ lblSunset.Text = setTime.ToString("h:mm tt");
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/AndroidManifest.xml b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/MainActivity.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..42a0c00
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace FlyoutTabSearch
+{
+ [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/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/MainApplication.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..e860f73
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace FlyoutTabSearch
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/Resources/values/colors.xml b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/AppDelegate.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..2189569
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace FlyoutTabSearch
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/Info.plist b/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..c96dd0a
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/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/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/Program.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..2da87f8
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace FlyoutTabSearch
+{
+ 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/MyFirstMauiApp/FlyoutTabSearch/Platforms/Tizen/Main.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..41e155d
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace FlyoutTabSearch
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/Tizen/tizen-manifest.xml b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..ffe0810
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/App.xaml b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..ddc09a3
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/App.xaml.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..7629481
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/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 FlyoutTabSearch.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/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/Package.appxmanifest b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..d9219a2
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/app.manifest b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..4e5517f
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/AppDelegate.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..2189569
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace FlyoutTabSearch
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/Info.plist b/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/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/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/Program.cs b/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..2da87f8
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace FlyoutTabSearch
+{
+ 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/MyFirstMauiApp/FlyoutTabSearch/Properties/launchSettings.json b/MyFirstMauiApp/FlyoutTabSearch/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/AppIcon/appicon.svg b/MyFirstMauiApp/FlyoutTabSearch/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/AppIcon/appiconfg.svg b/MyFirstMauiApp/FlyoutTabSearch/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Fonts/OpenSans-Regular.ttf b/MyFirstMauiApp/FlyoutTabSearch/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..dadcb01
Binary files /dev/null and b/MyFirstMauiApp/FlyoutTabSearch/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Fonts/OpenSans-Semibold.ttf b/MyFirstMauiApp/FlyoutTabSearch/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..5601642
Binary files /dev/null and b/MyFirstMauiApp/FlyoutTabSearch/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/comet.png b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/comet.png
new file mode 100644
index 0000000..3cf9af3
Binary files /dev/null and b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/comet.png differ
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/dotnet_bot.svg b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..abfaff2
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/moon.png b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/moon.png
new file mode 100644
index 0000000..dbc816d
Binary files /dev/null and b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/moon.png differ
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/question.png b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/question.png
new file mode 100644
index 0000000..c7da902
Binary files /dev/null and b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/question.png differ
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/starfield.png b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/starfield.png
new file mode 100644
index 0000000..1ab7b40
Binary files /dev/null and b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/starfield.png differ
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/sun.png b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/sun.png
new file mode 100644
index 0000000..2955833
Binary files /dev/null and b/MyFirstMauiApp/FlyoutTabSearch/Resources/Images/sun.png differ
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Raw/AboutAssets.txt b/MyFirstMauiApp/FlyoutTabSearch/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/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/MyFirstMauiApp/FlyoutTabSearch/Resources/Splash/splash.svg b/MyFirstMauiApp/FlyoutTabSearch/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/FlyoutTabSearch/Resources/Styles/Colors.xaml b/MyFirstMauiApp/FlyoutTabSearch/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/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/MyFirstMauiApp/FlyoutTabSearch/Resources/Styles/Styles.xaml b/MyFirstMauiApp/FlyoutTabSearch/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..dc4a034
--- /dev/null
+++ b/MyFirstMauiApp/FlyoutTabSearch/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln
index 915ee51..3760832 100644
--- a/MyFirstMauiApp/MyFirstMauiApp.sln
+++ b/MyFirstMauiApp/MyFirstMauiApp.sln
@@ -9,7 +9,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MauiUI", "MauiUI\MauiUI.csp
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PageLayout", "PageLayout\PageLayout.csproj", "{6115FFF0-9453-4924-9419-B1660B2BD2CB}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedResources", "SharedResources\SharedResources.csproj", "{9A9A55D0-AD77-4510-97E7-A345ABFB5C28}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharedResources", "SharedResources\SharedResources.csproj", "{9A9A55D0-AD77-4510-97E7-A345ABFB5C28}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlyoutTabSearch", "FlyoutTabSearch\FlyoutTabSearch.csproj", "{389BD760-810D-45D4-B67A-2B95FB8B5F74}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -41,6 +43,12 @@ Global
{9A9A55D0-AD77-4510-97E7-A345ABFB5C28}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A9A55D0-AD77-4510-97E7-A345ABFB5C28}.Release|Any CPU.Build.0 = Release|Any CPU
{9A9A55D0-AD77-4510-97E7-A345ABFB5C28}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {389BD760-810D-45D4-B67A-2B95FB8B5F74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {389BD760-810D-45D4-B67A-2B95FB8B5F74}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {389BD760-810D-45D4-B67A-2B95FB8B5F74}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {389BD760-810D-45D4-B67A-2B95FB8B5F74}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {389BD760-810D-45D4-B67A-2B95FB8B5F74}.Release|Any CPU.Build.0 = Release|Any CPU
+ {389BD760-810D-45D4-B67A-2B95FB8B5F74}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE