diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4b82ccd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+.vs/
+bin/
+obj/
diff --git a/App.xaml b/App.xaml
new file mode 100644
index 0000000..8fb5f38
--- /dev/null
+++ b/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App.xaml.cs b/App.xaml.cs
new file mode 100644
index 0000000..b4d805a
--- /dev/null
+++ b/App.xaml.cs
@@ -0,0 +1,15 @@
+namespace MauiApp1
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+ }
+
+ protected override Window CreateWindow(IActivationState? activationState)
+ {
+ return new Window(new AppShell());
+ }
+ }
+}
\ No newline at end of file
diff --git a/AppShell.xaml b/AppShell.xaml
new file mode 100644
index 0000000..5fb3b39
--- /dev/null
+++ b/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs
new file mode 100644
index 0000000..0f7e0cf
--- /dev/null
+++ b/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace MauiApp1
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/ComanderApp.csproj b/ComanderApp.csproj
new file mode 100644
index 0000000..b8dae84
--- /dev/null
+++ b/ComanderApp.csproj
@@ -0,0 +1,67 @@
+
+
+
+ net9.0-android;net9.0-ios;net9.0-maccatalyst
+ $(TargetFrameworks);net9.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ MauiApp1
+ true
+ true
+ enable
+ enable
+
+
+ MauiApp1
+
+
+ com.companyname.mauiapp1
+
+
+ 1.0
+ 1
+
+
+ None
+
+ 15.0
+ 15.0
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComanderApp.csproj.user b/ComanderApp.csproj.user
new file mode 100644
index 0000000..cd723ee
--- /dev/null
+++ b/ComanderApp.csproj.user
@@ -0,0 +1,31 @@
+
+
+
+ False
+ net9.0-windows10.0.19041.0
+ Windows Machine
+
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+
\ No newline at end of file
diff --git a/Commander.sln b/Commander.sln
new file mode 100644
index 0000000..4d16b0a
--- /dev/null
+++ b/Commander.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.14.36623.8
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComanderApp", "ComanderApp.csproj", "{7342CF38-EC3F-4640-B541-56B49B4AE2D3}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {7342CF38-EC3F-4640-B541-56B49B4AE2D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {7342CF38-EC3F-4640-B541-56B49B4AE2D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {7342CF38-EC3F-4640-B541-56B49B4AE2D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {7342CF38-EC3F-4640-B541-56B49B4AE2D3}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {84F353D3-F18D-4A2E-BB25-B4EA3F7171B1}
+ EndGlobalSection
+EndGlobal
diff --git a/FileSystemItem.cs b/FileSystemItem.cs
new file mode 100644
index 0000000..8c1da87
--- /dev/null
+++ b/FileSystemItem.cs
@@ -0,0 +1,10 @@
+namespace MauiApp1
+{
+ public class FileSystemItem
+ {
+ public string Name { get; set; }
+ public string FullName { get; set; }
+ public bool IsDirectory { get; set; }
+ public string Icon => IsDirectory ? "folder.png" : "file.png";
+ }
+}
diff --git a/FileSystemService.cs b/FileSystemService.cs
new file mode 100644
index 0000000..b5e3584
--- /dev/null
+++ b/FileSystemService.cs
@@ -0,0 +1,55 @@
+namespace MauiApp1
+{
+ public class FileSystemService : IFileSystemService
+ {
+ public string GetRootPath()
+ {
+#if ANDROID || IOS || MACCATALYST
+ return FileSystem.Current.AppDataDirectory;
+#else
+ return Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
+#endif
+ }
+
+ public IEnumerable GetDirectoryContents(string path)
+ {
+ if (!Directory.Exists(path))
+ return Enumerable.Empty();
+
+ var items = new List();
+
+ // Добавляем ".." если не корень
+ var parent = Directory.GetParent(path);
+ if (parent != null)
+ {
+ items.Add(new FileSystemItem
+ {
+ Name = "..",
+ FullName = parent.FullName,
+ IsDirectory = true
+ });
+ }
+
+ var dirs = Directory.GetDirectories(path)
+ .Select(d => new FileSystemItem
+ {
+ Name = Path.GetFileName(d),
+ FullName = d,
+ IsDirectory = true
+ });
+
+ var files = Directory.GetFiles(path)
+ .Select(f => new FileSystemItem
+ {
+ Name = Path.GetFileName(f),
+ FullName = f,
+ IsDirectory = false
+ });
+
+ items.AddRange(dirs.OrderBy(d => d.Name));
+ items.AddRange(files.OrderBy(f => f.Name));
+
+ return items;
+ }
+ }
+}
diff --git a/GlobalXmlns.cs b/GlobalXmlns.cs
new file mode 100644
index 0000000..b7e85bc
--- /dev/null
+++ b/GlobalXmlns.cs
@@ -0,0 +1,2 @@
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "MauiApp1")]
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "MauiApp1.Pages")]
diff --git a/IFileSystemService.cs b/IFileSystemService.cs
new file mode 100644
index 0000000..a12a594
--- /dev/null
+++ b/IFileSystemService.cs
@@ -0,0 +1,8 @@
+namespace MauiApp1
+{
+ public interface IFileSystemService
+ {
+ IEnumerable GetDirectoryContents(string path);
+ string GetRootPath();
+ }
+}
diff --git a/MainPage.xaml b/MainPage.xaml
new file mode 100644
index 0000000..11ac0c9
--- /dev/null
+++ b/MainPage.xaml
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MainPage.xaml.cs b/MainPage.xaml.cs
new file mode 100644
index 0000000..d237d70
--- /dev/null
+++ b/MainPage.xaml.cs
@@ -0,0 +1,194 @@
+// MainPage.xaml.cs
+using System.Collections.ObjectModel;
+using Microsoft.Maui.Controls;
+
+namespace MauiApp1;
+
+public partial class MainPage : ContentPage
+{
+ private readonly IFileSystemService _fileService;
+ public ObservableCollection LeftItems { get; set; } = new();
+ public ObservableCollection RightItems { get; set; } = new();
+ public string LeftPath { get; set; } = string.Empty;
+ public string RightPath { get; set; } = string.Empty;
+
+ private string _currentLeftPath;
+ private string _currentRightPath;
+
+ private FileSystemItem? _selectedLeftItem;
+ private FileSystemItem? _selectedRightItem;
+
+ public MainPage(IFileSystemService fileService)
+ {
+ InitializeComponent();
+ _fileService = fileService;
+ BindingContext = this;
+
+ var root = _fileService.GetRootPath();
+ LoadDirectory(root, true);
+ LoadDirectory(root, false);
+ }
+
+ private void LoadDirectory(string path, bool isLeft)
+ {
+ var items = _fileService.GetDirectoryContents(path).ToList();
+
+ if (isLeft)
+ {
+ LeftItems.Clear();
+ foreach (var item in items) LeftItems.Add(item);
+ _currentLeftPath = path;
+ LeftPath = path;
+ }
+ else
+ {
+ RightItems.Clear();
+ foreach (var item in items) RightItems.Add(item);
+ _currentRightPath = path;
+ RightPath = path;
+ }
+ }
+
+ private void OnLeftSelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ if (e.CurrentSelection.FirstOrDefault() is FileSystemItem item)
+ {
+ // Сохраняем выбор
+ _selectedLeftItem = item;
+
+ // Если это ".." или папка — переходим
+ if (item.Name == ".." || item.IsDirectory)
+ {
+ LoadDirectory(item.FullName, true);
+ // После перехода — сбрасываем выбор, чтобы не осталось выделения в новой папке
+ _selectedLeftItem = null;
+ LeftPanel.SelectedItem = null;
+ }
+ // Если это файл — ничего не делаем, оставляем его выделенным
+ }
+ }
+
+ private void OnRightSelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ if (e.CurrentSelection.FirstOrDefault() is FileSystemItem item)
+ {
+ _selectedRightItem = item;
+
+ if (item.Name == ".." || item.IsDirectory)
+ {
+ LoadDirectory(item.FullName, false);
+ _selectedRightItem = null;
+ RightPanel.SelectedItem = null;
+ }
+ }
+ }
+
+ private async void OnCopyClicked(object sender, EventArgs e)
+ {
+ await ProcessFileOperation(async (src, destDir) =>
+ {
+ if (Directory.Exists(src))
+ await CopyDirectory(src, Path.Combine(destDir, Path.GetFileName(src)));
+ else
+ File.Copy(src, Path.Combine(destDir, Path.GetFileName(src)), overwrite: true);
+ }, "Copy");
+ }
+
+ private async void OnMoveClicked(object sender, EventArgs e)
+ {
+ await ProcessFileOperation((src, destDir) =>
+ {
+ var dest = Path.Combine(destDir, Path.GetFileName(src));
+ if (Directory.Exists(src))
+ Directory.Move(src, dest);
+ else
+ File.Move(src, dest, overwrite: true);
+ return Task.CompletedTask;
+ }, "Move");
+ }
+
+ private async void OnDeleteClicked(object sender, EventArgs e)
+ {
+ var item = _selectedLeftItem ?? _selectedRightItem;
+ if (item == null) return;
+
+ var confirm = await DisplayAlert("Delete", $"Delete '{item.Name}'?", "Yes", "No");
+ if (confirm)
+ {
+ if (item.IsDirectory)
+ Directory.Delete(item.FullName, recursive: true);
+ else
+ File.Delete(item.FullName);
+
+ // Обновляем обе панели (или только ту, откуда удалили)
+ LoadDirectory(_currentLeftPath, true);
+ LoadDirectory(_currentRightPath, false);
+ }
+ }
+
+ private async void OnMkdirClicked(object sender, EventArgs e)
+ {
+ var result = await DisplayPromptAsync("New Folder", "Folder name:", "Create", "Cancel");
+ if (string.IsNullOrWhiteSpace(result)) return;
+
+ // Создаём в активной панели (выберем левую, если выделение слева, иначе правую)
+ string targetPath = (_selectedLeftItem != null || LeftItems.Count > 0) ? _currentLeftPath : _currentRightPath;
+ string newPath = Path.Combine(targetPath, result.Trim());
+
+ if (!Directory.Exists(newPath))
+ {
+ Directory.CreateDirectory(newPath);
+ LoadDirectory(_currentLeftPath, true);
+ LoadDirectory(_currentRightPath, false);
+ }
+ else
+ {
+ await DisplayAlert("Error", "Folder already exists.", "OK");
+ }
+ }
+
+ private void OnExitClicked(object sender, EventArgs e)
+ {
+ Application.Current?.Quit();
+ }
+
+ private async Task CopyDirectory(string sourceDir, string targetDir)
+ {
+ Directory.CreateDirectory(targetDir);
+
+ foreach (var file in Directory.GetFiles(sourceDir))
+ {
+ await Task.Run(() => File.Copy(file, Path.Combine(targetDir, Path.GetFileName(file)), overwrite: true));
+ }
+
+ foreach (var dir in Directory.GetDirectories(sourceDir))
+ {
+ await CopyDirectory(dir, Path.Combine(targetDir, Path.GetFileName(dir)));
+ }
+ }
+
+ private async Task ProcessFileOperation(Func operation, string actionName)
+ {
+ var srcItem = _selectedLeftItem ?? _selectedRightItem;
+ if (srcItem == null)
+ {
+ await DisplayAlert("Error", "Select a file or folder first.", "OK");
+ return;
+ }
+
+ // Определяем целевую директорию: противоположная панель
+ string destDir = (srcItem == _selectedLeftItem) ? _currentRightPath : _currentLeftPath;
+
+ try
+ {
+ await operation(srcItem.FullName, destDir);
+ // Обновляем обе панели
+ LoadDirectory(_currentLeftPath, true);
+ LoadDirectory(_currentRightPath, false);
+ }
+ catch (Exception ex)
+ {
+ await DisplayAlert("Error", $"{actionName} failed: {ex.Message}", "OK");
+ }
+ }
+}
\ No newline at end of file
diff --git a/MauiProgram.cs b/MauiProgram.cs
new file mode 100644
index 0000000..5141500
--- /dev/null
+++ b/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace MauiApp1
+{
+ 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
+ builder.Services.AddSingleton();
+ return builder.Build();
+ }
+ }
+}
diff --git a/Platforms/Android/AndroidManifest.xml b/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Platforms/Android/MainActivity.cs b/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..9f289be
--- /dev/null
+++ b/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace MauiApp1
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
diff --git a/Platforms/Android/MainApplication.cs b/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..8547160
--- /dev/null
+++ b/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace MauiApp1
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Platforms/Android/Resources/values/colors.xml b/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/Platforms/MacCatalyst/AppDelegate.cs b/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..9f49fad
--- /dev/null
+++ b/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MauiApp1
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Platforms/MacCatalyst/Entitlements.plist b/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/Platforms/MacCatalyst/Info.plist b/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..7268977
--- /dev/null
+++ b/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Platforms/MacCatalyst/Program.cs b/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..c13a69b
--- /dev/null
+++ b/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MauiApp1
+{
+ 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/Platforms/Tizen/Main.cs b/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..ae2749a
--- /dev/null
+++ b/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace MauiApp1
+{
+ 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/Platforms/Tizen/tizen-manifest.xml b/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..8d0eab9
--- /dev/null
+++ b/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/Platforms/Windows/App.xaml b/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..4cf2244
--- /dev/null
+++ b/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/Platforms/Windows/App.xaml.cs b/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..16ead9b
--- /dev/null
+++ b/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 MauiApp1.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/Platforms/Windows/Package.appxmanifest b/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..301a362
--- /dev/null
+++ b/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Platforms/Windows/app.manifest b/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..2da12c4
--- /dev/null
+++ b/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/Platforms/iOS/AppDelegate.cs b/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..9f49fad
--- /dev/null
+++ b/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MauiApp1
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Platforms/iOS/Info.plist b/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/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/Platforms/iOS/Program.cs b/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..c13a69b
--- /dev/null
+++ b/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MauiApp1
+{
+ 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/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
new file mode 100644
index 0000000..24ab3b4
--- /dev/null
+++ b/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
@@ -0,0 +1,51 @@
+
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryDiskSpace
+ NSPrivacyAccessedAPITypeReasons
+
+ E174.1
+
+
+
+
+
+
diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json
new file mode 100644
index 0000000..4f85793
--- /dev/null
+++ b/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "Project",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Resources/AppIcon/appicon.svg b/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/Resources/AppIcon/appiconfg.svg b/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Resources/Fonts/OpenSans-Regular.ttf b/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..bf60ae5
Binary files /dev/null and b/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/Resources/Fonts/OpenSans-Semibold.ttf b/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..ad71502
Binary files /dev/null and b/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/Resources/Images/dotnet_bot.png b/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..1d1b981
Binary files /dev/null and b/Resources/Images/dotnet_bot.png differ
diff --git a/Resources/Raw/AboutAssets.txt b/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..89dc758
--- /dev/null
+++ b/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 your 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/Resources/Splash/splash.svg b/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Resources/Styles/Colors.xaml b/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..30307a5
--- /dev/null
+++ b/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Resources/Styles/Styles.xaml b/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..d4dded0
--- /dev/null
+++ b/Resources/Styles/Styles.xaml
@@ -0,0 +1,440 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+