Beautifiing Login Process

This commit is contained in:
2024-08-21 20:18:04 +02:00
parent 13db083891
commit 23ea92baf6
3 changed files with 15 additions and 17 deletions

View File

@@ -5,11 +5,13 @@ using Microsoft.Maui.Dispatching;
namespace Jugenddienst_Stunden.ViewModels {
internal class AboutViewModel {
public string Title => AppInfo.Name;
public string AppTitle => AppInfo.Name;
public string Version => AppInfo.VersionString;
public string Message => "Scanne den QR-Code von deinem Benutzerprofil auf der Stundenseite.";
public string Title { get; set; } = Preferences.Default.Get("name", "") + " " + Preferences.Default.Get("surname", "");