diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln
new file mode 100644
index 0000000..295bff2
--- /dev/null
+++ b/MyFirstMauiApp/MyFirstMauiApp.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.8.34511.84
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Phoneword", "Phoneword\Phoneword.csproj", "{B3546A62-5BF5-4659-A76C-626F5781CDA4}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.Build.0 = Release|Any CPU
+ {B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {34F9DB89-BB6B-44B4-AD3D-1BEC6A927C1E}
+ EndGlobalSection
+EndGlobal
diff --git a/MyFirstMauiApp/Phoneword/App.xaml b/MyFirstMauiApp/Phoneword/App.xaml
new file mode 100644
index 0000000..64213f7
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/App.xaml.cs b/MyFirstMauiApp/Phoneword/App.xaml.cs
new file mode 100644
index 0000000..3abd634
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace Phoneword
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/Phoneword/AppShell.xaml b/MyFirstMauiApp/Phoneword/AppShell.xaml
new file mode 100644
index 0000000..cea77a7
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/AppShell.xaml.cs b/MyFirstMauiApp/Phoneword/AppShell.xaml.cs
new file mode 100644
index 0000000..a8e5031
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace Phoneword
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/Phoneword/MainPage.xaml b/MyFirstMauiApp/Phoneword/MainPage.xaml
new file mode 100644
index 0000000..fff6c97
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/MainPage.xaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/MainPage.xaml.cs b/MyFirstMauiApp/Phoneword/MainPage.xaml.cs
new file mode 100644
index 0000000..85f9bda
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/MainPage.xaml.cs
@@ -0,0 +1,53 @@
+namespace Phoneword
+{
+ public partial class MainPage : ContentPage
+ {
+ string _translatedNumber;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void TranslateButton_Clicked(object sender, EventArgs e)
+ {
+ string enteredNumber = PhoneNumberText.Text;
+ _translatedNumber = PhonewordTranslator.ToNumber(enteredNumber);
+ if (!string.IsNullOrEmpty(_translatedNumber))
+ {
+ CallButton.IsEnabled = true;
+ CallButton.Text = $"Call {_translatedNumber}";
+ }
+ else
+ {
+ CallButton.IsEnabled = false;
+ CallButton.Text = "Call";
+ }
+ }
+
+ private async void CallButton_Clicked(object sender, EventArgs e)
+ {
+ if (await this.DisplayAlert(
+ "Dial a Number",
+ $"Would you like to call {_translatedNumber}?",
+ "Yes",
+ "No"))
+ {
+ try
+ {
+ if (PhoneDialer.Default.IsSupported)
+ PhoneDialer.Default.Open(_translatedNumber);
+ }
+ catch (ArgumentNullException)
+ {
+ await DisplayAlert("Unalble to dial", "Phone was not valid.", "OK");
+ }
+ catch (Exception)
+ {
+ await DisplayAlert("Unalble to dial", "Phone dialing failed.", "OK");
+ }
+ }
+ }
+ }
+
+}
diff --git a/MyFirstMauiApp/Phoneword/MauiProgram.cs b/MyFirstMauiApp/Phoneword/MauiProgram.cs
new file mode 100644
index 0000000..7551c82
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace Phoneword
+{
+ 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/Phoneword/Phoneword.csproj b/MyFirstMauiApp/Phoneword/Phoneword.csproj
new file mode 100644
index 0000000..14c5b11
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Phoneword.csproj
@@ -0,0 +1,55 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ Phoneword
+ true
+ true
+ enable
+
+
+ Phoneword
+
+
+ com.companyname.phoneword
+ 635aa179-5ea8-4e57-a703-a10281381db0
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/PhonewordTranslator.cs b/MyFirstMauiApp/Phoneword/PhonewordTranslator.cs
new file mode 100644
index 0000000..99e5a9b
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/PhonewordTranslator.cs
@@ -0,0 +1,52 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Phoneword
+{
+ internal class PhonewordTranslator
+ {
+ public static string ToNumber(string raw)
+ {
+ if (string.IsNullOrEmpty(raw))
+ return null;
+
+ raw = raw.ToUpperInvariant();
+
+ var newNumber = new StringBuilder();
+ foreach (var c in raw)
+ {
+ if (" -0123456789".Contains(c))
+ newNumber.Append(c);
+ else
+ {
+ var result = TranslateToNumber(c);
+ if (result != null)
+ newNumber.Append(result);
+ else
+ return null;
+ }
+ }
+
+ return newNumber.ToString();
+ }
+
+ private static readonly string[] digits =
+ {
+ "ABC", "DEF", "GHI", "JKL", "MNO", "PQRS", "TUV", "WXYZ"
+ };
+
+ private static int? TranslateToNumber(char c)
+ {
+ for (int i = 0; i < digits.Length; i++)
+ {
+ if (digits[i].Contains(c))
+ return i + 2;
+ }
+
+ return null;
+ }
+ }
+}
diff --git a/MyFirstMauiApp/Phoneword/Platforms/Android/AndroidManifest.xml b/MyFirstMauiApp/Phoneword/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..27ef1de
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/Phoneword/Platforms/Android/MainActivity.cs b/MyFirstMauiApp/Phoneword/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..b75ccdc
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace Phoneword
+{
+ [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/Phoneword/Platforms/Android/MainApplication.cs b/MyFirstMauiApp/Phoneword/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..daee527
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace Phoneword
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/Phoneword/Platforms/Android/Resources/values/colors.xml b/MyFirstMauiApp/Phoneword/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/Phoneword/Platforms/MacCatalyst/AppDelegate.cs b/MyFirstMauiApp/Phoneword/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..ddbc61b
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Phoneword
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/Phoneword/Platforms/MacCatalyst/Info.plist b/MyFirstMauiApp/Phoneword/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..c96dd0a
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/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/Phoneword/Platforms/MacCatalyst/Program.cs b/MyFirstMauiApp/Phoneword/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..591e1ea
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Phoneword
+{
+ 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/Phoneword/Platforms/Tizen/Main.cs b/MyFirstMauiApp/Phoneword/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..7590715
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace Phoneword
+{
+ 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/Phoneword/Platforms/Tizen/tizen-manifest.xml b/MyFirstMauiApp/Phoneword/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..1eb18d7
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/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/Phoneword/Platforms/Windows/App.xaml b/MyFirstMauiApp/Phoneword/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..d7bc611
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/Platforms/Windows/App.xaml.cs b/MyFirstMauiApp/Phoneword/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..90c20d6
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/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 Phoneword.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/Phoneword/Platforms/Windows/Package.appxmanifest b/MyFirstMauiApp/Phoneword/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..1815044
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/Platforms/Windows/app.manifest b/MyFirstMauiApp/Phoneword/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..545ec72
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/Platforms/iOS/AppDelegate.cs b/MyFirstMauiApp/Phoneword/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..ddbc61b
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Phoneword
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/Phoneword/Platforms/iOS/Info.plist b/MyFirstMauiApp/Phoneword/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/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/Phoneword/Platforms/iOS/Program.cs b/MyFirstMauiApp/Phoneword/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..591e1ea
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Phoneword
+{
+ 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/Phoneword/Properties/launchSettings.json b/MyFirstMauiApp/Phoneword/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/Phoneword/Resources/AppIcon/appicon.svg b/MyFirstMauiApp/Phoneword/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/Phoneword/Resources/AppIcon/appiconfg.svg b/MyFirstMauiApp/Phoneword/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/Phoneword/Resources/Fonts/OpenSans-Regular.ttf b/MyFirstMauiApp/Phoneword/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..dadcb01
Binary files /dev/null and b/MyFirstMauiApp/Phoneword/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/MyFirstMauiApp/Phoneword/Resources/Fonts/OpenSans-Semibold.ttf b/MyFirstMauiApp/Phoneword/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..5601642
Binary files /dev/null and b/MyFirstMauiApp/Phoneword/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/MyFirstMauiApp/Phoneword/Resources/Images/dotnet_bot.svg b/MyFirstMauiApp/Phoneword/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..abfaff2
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/MyFirstMauiApp/Phoneword/Resources/Raw/AboutAssets.txt b/MyFirstMauiApp/Phoneword/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/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/Phoneword/Resources/Splash/splash.svg b/MyFirstMauiApp/Phoneword/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/Phoneword/Resources/Styles/Colors.xaml b/MyFirstMauiApp/Phoneword/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/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/Phoneword/Resources/Styles/Styles.xaml b/MyFirstMauiApp/Phoneword/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..dc4a034
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/Phoneword/TestPage.cs b/MyFirstMauiApp/Phoneword/TestPage.cs
new file mode 100644
index 0000000..342cb3c
--- /dev/null
+++ b/MyFirstMauiApp/Phoneword/TestPage.cs
@@ -0,0 +1,43 @@
+namespace Phoneword;
+
+public class TestPage : ContentPage
+{
+ int count = 0;
+
+ Label counterLabel;
+
+ public TestPage()
+ {
+ ScrollView myScrollView = new ScrollView();
+ VerticalStackLayout myStackLayout = new VerticalStackLayout();
+ myScrollView.Content = myStackLayout;
+
+ counterLabel = new Label()
+ {
+ Text = "Current count: 0",
+ FontSize = 18,
+ FontAttributes = FontAttributes.Bold,
+ HorizontalOptions = LayoutOptions.Center,
+ };
+ myStackLayout.Children.Add(counterLabel);
+
+ Button myButton = new Button()
+ {
+ Text = "Click me",
+ HorizontalOptions = LayoutOptions.Center,
+ };
+ myStackLayout.Children.Add(myButton);
+
+ myButton.Clicked += MyButton_Clicked;
+
+ Content = myScrollView;
+ }
+
+ private void MyButton_Clicked(object sender, EventArgs e)
+ {
+ count++;
+ counterLabel.Text = $"Current count: {count}";
+
+ SemanticScreenReader.Announce(counterLabel.Text);
+ }
+}
\ No newline at end of file