Barcodes speichern

This commit is contained in:
2024-08-21 00:11:59 +02:00
parent a61aa38d24
commit 423e5f3cd2
12 changed files with 142 additions and 49 deletions

View File

@@ -1,9 +1,12 @@
namespace Jugenddienst_Stunden.Views;
public partial class StundenPage : ContentPage
{
public StundenPage()
{
public partial class StundenPage : ContentPage {
public StundenPage() {
InitializeComponent();
}
protected override void OnAppearing() {
base.OnAppearing();
Title = Preferences.Default.Get("name", "") + " " + Preferences.Default.Get("surname", "");
}
}