From 669f4fb9a300cf37bf45825d916b8abda29a396e Mon Sep 17 00:00:00 2001 From: Kimi Loeffel Date: Fri, 30 Dec 2022 16:47:27 +0100 Subject: [PATCH] icon and image with colorscheme --- .editorconfig | 1 + App.xaml.cs | 6 +- AppShell.xaml.cs | 6 +- CreateUserPage.xaml | 21 +- Data.cs | 6 +- ImpressumPage.xaml | 4 +- LoginPage.xaml | 69 +++--- LoginShell.xaml.cs | 6 +- MainPage.xaml.cs | 4 +- Platforms/MacCatalyst/AppDelegate.cs | 12 +- Platforms/MacCatalyst/Program.cs | 12 +- Resources/AppIcon/appicon.svg | 8 +- Resources/AppIcon/icon.svg | 7 + Resources/Images/dotnet_bot.svg | 93 --------- Resources/Images/logo.svg | 46 +--- Resources/Images/logo_white.svg | 10 +- YOUserbase.csproj | 300 +++++++++++++-------------- 17 files changed, 251 insertions(+), 360 deletions(-) create mode 100644 Resources/AppIcon/icon.svg delete mode 100644 Resources/Images/dotnet_bot.svg diff --git a/.editorconfig b/.editorconfig index 88d2b61..1601360 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,7 @@ root = true # All files [*] indent_style = space +end_of_line = lf # XML project files [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}] diff --git a/App.xaml.cs b/App.xaml.cs index aec2541..d67da7e 100644 --- a/App.xaml.cs +++ b/App.xaml.cs @@ -1,9 +1,9 @@ -namespace YOUserbase; - +namespace YOUserbase; + public partial class App : Application { public App() { InitializeComponent(); MainPage = new LoginShell(); - } + } } \ No newline at end of file diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs index b243f81..c131b57 100644 --- a/AppShell.xaml.cs +++ b/AppShell.xaml.cs @@ -1,8 +1,8 @@ -namespace YOUserbase; - +namespace YOUserbase; + public partial class AppShell : Shell { public AppShell() { InitializeComponent(); Routing.RegisterRoute(nameof(UserOverviewPage), typeof(UserOverviewPage)); - } + } } \ No newline at end of file diff --git a/CreateUserPage.xaml b/CreateUserPage.xaml index 846fe7e..435d751 100644 --- a/CreateUserPage.xaml +++ b/CreateUserPage.xaml @@ -64,14 +64,25 @@ -