diff --git a/MyFirstMAUI/MyFirstMAUI.sln b/MyFirstMAUI/MyFirstMAUI.sln
new file mode 100644
index 0000000..5d050ea
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI.sln
@@ -0,0 +1,27 @@
+
+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}") = "MyFirstMAUI", "MyFirstMAUI\MyFirstMAUI.csproj", "{A9777D93-9CD5-4649-A33F-C5EC75012B2B}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A9777D93-9CD5-4649-A33F-C5EC75012B2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A9777D93-9CD5-4649-A33F-C5EC75012B2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A9777D93-9CD5-4649-A33F-C5EC75012B2B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {A9777D93-9CD5-4649-A33F-C5EC75012B2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A9777D93-9CD5-4649-A33F-C5EC75012B2B}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A9777D93-9CD5-4649-A33F-C5EC75012B2B}.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/MyFirstMAUI/MyFirstMAUI/App.xaml b/MyFirstMAUI/MyFirstMAUI/App.xaml
new file mode 100644
index 0000000..75f9c44
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/App.xaml.cs b/MyFirstMAUI/MyFirstMAUI/App.xaml.cs
new file mode 100644
index 0000000..c95e82f
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/App.xaml.cs
@@ -0,0 +1,11 @@
+namespace MyFirstMAUI;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+}
diff --git a/MyFirstMAUI/MyFirstMAUI/AppShell.xaml b/MyFirstMAUI/MyFirstMAUI/AppShell.xaml
new file mode 100644
index 0000000..55719c9
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/AppShell.xaml.cs b/MyFirstMAUI/MyFirstMAUI/AppShell.xaml.cs
new file mode 100644
index 0000000..8d8a574
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace MyFirstMAUI;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/MyFirstMAUI/MyFirstMAUI/CustomControl/BallView.xaml b/MyFirstMAUI/MyFirstMAUI/CustomControl/BallView.xaml
new file mode 100644
index 0000000..78c02be
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/CustomControl/BallView.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 노랑
+ 파랑
+ 빨강
+ 회색
+ 초록
+
+
+
+
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/CustomControl/BallView.xaml.cs b/MyFirstMAUI/MyFirstMAUI/CustomControl/BallView.xaml.cs
new file mode 100644
index 0000000..3068cb0
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/CustomControl/BallView.xaml.cs
@@ -0,0 +1,48 @@
+using MyFirstMAUI.Utility;
+
+namespace MyFirstMAUI.CustomControl;
+
+public partial class BallView : ContentView
+{
+ public BallView()
+ {
+ InitializeComponent();
+ picker.SelectedIndex = 0;
+ }
+
+ public void Pick()
+ {
+ int index = picker.SelectedIndex;
+ ellipse.Stroke = Utils.Palettes[index];
+
+ int num = Utils.GetNumber(index);
+ number.Text = num.ToString();
+ }
+
+ public int Pick(List alreadySelected)
+ {
+ int index = picker.SelectedIndex;
+ ellipse.Stroke = Utils.Palettes[index];
+
+ int num = Utils.GetNumber(index);
+ while (alreadySelected.Contains(num))
+ {
+ num = Utils.GetNumber(index);
+ }
+
+ number.Text = num.ToString();
+
+ return num;
+ }
+
+ private void picker_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ number.Text = "";
+
+ int index = picker.SelectedIndex;
+ if (index < 0)
+ return;
+
+ ellipse.Stroke = Utils.Palettes[index];
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMAUI/MyFirstMAUI/MainPage.xaml b/MyFirstMAUI/MyFirstMAUI/MainPage.xaml
new file mode 100644
index 0000000..2089773
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/MainPage.xaml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/MainPage.xaml.cs b/MyFirstMAUI/MyFirstMAUI/MainPage.xaml.cs
new file mode 100644
index 0000000..ad2794d
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/MainPage.xaml.cs
@@ -0,0 +1,79 @@
+using MyFirstMAUI.Utility;
+using Newtonsoft.Json.Linq;
+using System.Text;
+
+namespace MyFirstMAUI;
+
+public partial class MainPage : ContentPage
+{
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ //private void btnReqHistory_Clicked(object sender, EventArgs e)
+ //{
+ // int start = int.Parse(entStart.Text);
+ // int end = int.Parse(entEnd.Text);
+
+ // List history = new List(6 * (end - start + 1));
+ // for (int i = start; i <= end; i++)
+ // {
+ // history.AddRange(GetHistory(i));
+ // }
+
+ // history.Sort();
+ // Dictionary historyCount = new Dictionary();
+ // for (int i = 0; i < history.Count; i++)
+ // {
+ // string key = history[i].ToString();
+ // if (!historyCount.ContainsKey(key))
+ // historyCount.Add(key, 0);
+
+ // historyCount[key]++;
+ // }
+
+ // PrintHistory(historyCount);
+ //}
+
+ private List GetHistory(int round)
+ {
+ List result = new List(6);
+ string url = $"http://www.dhlottery.co.kr/common.do?method=getLottoNumber&drwNo={round.ToString()}";
+ JObject response = WebAPIUtil.CallRequest(url);
+ result.Add(int.Parse(response["drwtNo1"].ToString()));
+ result.Add(int.Parse(response["drwtNo2"].ToString()));
+ result.Add(int.Parse(response["drwtNo3"].ToString()));
+ result.Add(int.Parse(response["drwtNo4"].ToString()));
+ result.Add(int.Parse(response["drwtNo5"].ToString()));
+ result.Add(int.Parse(response["drwtNo6"].ToString()));
+
+ return result;
+ }
+
+ private void PrintHistory(Dictionary history)
+ {
+ StringBuilder stringBuilder = new StringBuilder();
+ foreach (KeyValuePair pair in history)
+ {
+ string append = $"[{pair.Key}공] → {pair.Value}회";
+ stringBuilder.AppendLine(append);
+ }
+
+ DisplayAlert("결과", stringBuilder.ToString(), "확인");
+ }
+
+ private void btnGenerate_Clicked(object sender, EventArgs e)
+ {
+ List selected = new List(6);
+ selected.Add(bv1.Pick(selected));
+ selected.Add(bv2.Pick(selected));
+ selected.Add(bv3.Pick(selected));
+ selected.Add(bv4.Pick(selected));
+ selected.Add(bv5.Pick(selected));
+ selected.Add(bv6.Pick(selected));
+ }
+}
+
diff --git a/MyFirstMAUI/MyFirstMAUI/MauiProgram.cs b/MyFirstMAUI/MyFirstMAUI/MauiProgram.cs
new file mode 100644
index 0000000..efb7f7a
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/MauiProgram.cs
@@ -0,0 +1,24 @@
+using Microsoft.Extensions.Logging;
+
+namespace MyFirstMAUI;
+
+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/MyFirstMAUI/MyFirstMAUI/MyFirstMAUI.csproj b/MyFirstMAUI/MyFirstMAUI/MyFirstMAUI.csproj
new file mode 100644
index 0000000..9a2d0dc
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/MyFirstMAUI.csproj
@@ -0,0 +1,66 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ MyFirstMAUI
+ true
+ true
+ enable
+
+
+ MyFirstMAUI
+
+
+ com.companyname.myfirstmaui
+ dfbbb2bf-b5d4-4abb-b587-9a2bfb9501d8
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+ apk
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/Android/AndroidManifest.xml b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/Android/MainActivity.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..4c64c48
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/MainActivity.cs
@@ -0,0 +1,10 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace MyFirstMAUI;
+
+[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/MyFirstMAUI/MyFirstMAUI/Platforms/Android/MainApplication.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..df78a1d
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/MainApplication.cs
@@ -0,0 +1,15 @@
+using Android.App;
+using Android.Runtime;
+
+namespace MyFirstMAUI;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/Android/Resources/values/colors.xml b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/AppDelegate.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..e90eaa7
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace MyFirstMAUI;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/Info.plist b/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..c96dd0a
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/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/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/Program.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..d1ab891
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MyFirstMAUI;
+
+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/MyFirstMAUI/MyFirstMAUI/Platforms/Tizen/Main.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..7e74d2a
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace MyFirstMAUI;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/Tizen/tizen-manifest.xml b/MyFirstMAUI/MyFirstMAUI/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..b0f7114
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/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/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/App.xaml b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..1d2f259
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/App.xaml.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..b0b1fad
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,24 @@
+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 MyFirstMAUI.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/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/Package.appxmanifest b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..b4eda07
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/app.manifest b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..dfb5760
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/AppDelegate.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..e90eaa7
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace MyFirstMAUI;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/Info.plist b/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/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/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/Program.cs b/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..d1ab891
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MyFirstMAUI;
+
+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/MyFirstMAUI/MyFirstMAUI/Properties/launchSettings.json b/MyFirstMAUI/MyFirstMAUI/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMAUI/MyFirstMAUI/Resources/AppIcon/appicon.svg b/MyFirstMAUI/MyFirstMAUI/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/MyFirstMAUI/MyFirstMAUI/Resources/AppIcon/appiconfg.svg b/MyFirstMAUI/MyFirstMAUI/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMAUI/MyFirstMAUI/Resources/Fonts/OpenSans-Regular.ttf b/MyFirstMAUI/MyFirstMAUI/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..55cf9b4
Binary files /dev/null and b/MyFirstMAUI/MyFirstMAUI/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/MyFirstMAUI/MyFirstMAUI/Resources/Fonts/OpenSans-Semibold.ttf b/MyFirstMAUI/MyFirstMAUI/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..011d196
Binary files /dev/null and b/MyFirstMAUI/MyFirstMAUI/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/MyFirstMAUI/MyFirstMAUI/Resources/Images/dotnet_bot.svg b/MyFirstMAUI/MyFirstMAUI/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..abfaff2
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/MyFirstMAUI/MyFirstMAUI/Resources/Raw/AboutAssets.txt b/MyFirstMAUI/MyFirstMAUI/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/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/MyFirstMAUI/MyFirstMAUI/Resources/Splash/splash.svg b/MyFirstMAUI/MyFirstMAUI/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMAUI/MyFirstMAUI/Resources/Styles/Colors.xaml b/MyFirstMAUI/MyFirstMAUI/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/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/MyFirstMAUI/MyFirstMAUI/Resources/Styles/Styles.xaml b/MyFirstMAUI/MyFirstMAUI/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..dc4a034
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMAUI/MyFirstMAUI/Utility/Utils.cs b/MyFirstMAUI/MyFirstMAUI/Utility/Utils.cs
new file mode 100644
index 0000000..5d27ac3
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Utility/Utils.cs
@@ -0,0 +1,60 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MyFirstMAUI.Utility
+{
+ internal class Utils
+ {
+ // 노 파 빨 회 초
+ public static Color[] Palettes = new Color[]
+ {
+ Color.FromRgb(245, 233, 77),
+ Color.FromRgb(15, 76, 129),
+ Color.FromRgb(191, 25, 50),
+ Color.FromRgb(147, 149, 151),
+ Color.FromRgb(0, 148, 115),
+ };
+
+ private static int _callCount = 1;
+ // 1-10, 11-20, 21-30, 31-40, 41-45
+ public static int GetNumber(int index)
+ {
+ if (_callCount > int.MaxValue / 2)
+ _callCount = 1;
+
+ int min = 1;
+ int max = 46;
+ switch (index)
+ {
+ case 0:
+ min = 1;
+ max = 11;
+ break;
+ case 1:
+ min = 11;
+ max = 21;
+ break;
+ case 2:
+ min = 21;
+ max = 31;
+ break;
+ case 3:
+ min = 31;
+ max = 41;
+ break;
+ case 4:
+ min = 41;
+ max = 46;
+ break;
+ default:
+ break;
+ }
+
+ Random rand = new Random(unchecked((int)DateTime.Now.Ticks) + _callCount);
+ return rand.Next(min, max);
+ }
+ }
+}
diff --git a/MyFirstMAUI/MyFirstMAUI/Utility/WebAPIUtil.cs b/MyFirstMAUI/MyFirstMAUI/Utility/WebAPIUtil.cs
new file mode 100644
index 0000000..f082a2c
--- /dev/null
+++ b/MyFirstMAUI/MyFirstMAUI/Utility/WebAPIUtil.cs
@@ -0,0 +1,37 @@
+using Newtonsoft.Json.Linq;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MyFirstMAUI.Utility
+{
+ internal class WebAPIUtil
+ {
+ public static JObject CallRequest(string url)
+ {
+ JObject obj;
+ try
+ {
+ WebRequest req = WebRequest.Create(url);
+ req.Method = "GET";
+ req.ContentType = "application/json";
+ using (WebResponse response = req.GetResponse())
+ using (Stream dataStream = response.GetResponseStream())
+ using (StreamReader reader = new StreamReader(dataStream))
+ {
+ string reponse = reader.ReadToEnd();
+ obj = JObject.Parse(reponse);
+ }
+ }
+ catch (Exception ex)
+ {
+ throw;
+ }
+
+ return obj;
+ }
+ }
+}