diff --git a/MonkeyFinder.sln b/MonkeyFinder.sln new file mode 100644 index 0000000..b99e83b --- /dev/null +++ b/MonkeyFinder.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31611.283 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonkeyFinder", "MonkeyFinder\MonkeyFinder.csproj", "{C60F2B1C-790E-4432-A719-52182A333ADE}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{393B8F30-F402-46A9-B209-8C71897A3416}" + ProjectSection(SolutionItems) = preProject + ..\Directory.build.props = ..\Directory.build.props + ..\Directory.build.targets = ..\Directory.build.targets + README.md = README.md + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C60F2B1C-790E-4432-A719-52182A333ADE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C60F2B1C-790E-4432-A719-52182A333ADE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C60F2B1C-790E-4432-A719-52182A333ADE}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {C60F2B1C-790E-4432-A719-52182A333ADE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C60F2B1C-790E-4432-A719-52182A333ADE}.Release|Any CPU.Build.0 = Release|Any CPU + {C60F2B1C-790E-4432-A719-52182A333ADE}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} + EndGlobalSection +EndGlobal diff --git a/MonkeyFinder/App.xaml b/MonkeyFinder/App.xaml new file mode 100644 index 0000000..09c403e --- /dev/null +++ b/MonkeyFinder/App.xaml @@ -0,0 +1,69 @@ + + + + + #FFC107 + #FFA000 + #00BCD4 + + #FAF9F8 + Black + + + + + + + + + + + + + + + + + + + + + + diff --git a/MonkeyFinder/App.xaml.cs b/MonkeyFinder/App.xaml.cs new file mode 100644 index 0000000..09d633f --- /dev/null +++ b/MonkeyFinder/App.xaml.cs @@ -0,0 +1,11 @@ +namespace MonkeyFinder; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/MonkeyFinder/AppShell.xaml b/MonkeyFinder/AppShell.xaml new file mode 100644 index 0000000..1a5b5ec --- /dev/null +++ b/MonkeyFinder/AppShell.xaml @@ -0,0 +1,35 @@ + + + + + + + + +