diff --git a/Jugenddienst Stunden/Jugenddienst Stunden.csproj b/Jugenddienst Stunden/Jugenddienst Stunden.csproj
index ba1f2d6..12026a8 100644
--- a/Jugenddienst Stunden/Jugenddienst Stunden.csproj
+++ b/Jugenddienst Stunden/Jugenddienst Stunden.csproj
@@ -26,8 +26,8 @@
com.companyname.jugenddienststunden
- 1.0.3
- 1
+ 1.0.6
+ 7
11.0
13.1
@@ -38,7 +38,7 @@
True
paket_icon.png
de
- 1.0.3
+ 1.0.6
@@ -113,25 +113,25 @@
- 1.0.4
- 5
+ 1.0.6
+ 7
- 1.0.4
- 5
+ 1.0.6
+ 7
True
- 5
+ 7
$(DefineConstants);DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
- 1.0.4
+ 1.0.6
- 5
- 1.0.4
+ 7
+ 1.0.6
diff --git a/Jugenddienst Stunden/Views/StundenPage.xaml.cs b/Jugenddienst Stunden/Views/StundenPage.xaml.cs
index dc4d35e..138ba3a 100644
--- a/Jugenddienst Stunden/Views/StundenPage.xaml.cs
+++ b/Jugenddienst Stunden/Views/StundenPage.xaml.cs
@@ -8,9 +8,7 @@ namespace Jugenddienst_Stunden.Views;
///
public partial class StundenPage : ContentPage {
- private int heightValue;
-
-
+ private int heightValue = 300;
///
/// CTOR
@@ -32,15 +30,12 @@ public partial class StundenPage : ContentPage {
#elif WINDOWS
heightValue = 320;
#else
- heightValue = 300;
+ heightValue = 300;
#endif
SizeChanged += OnPageSizeChanged;
}
-
-
-
private void Vm_AlertEvent(object? sender, string e) {
MainThread.BeginInvokeOnMainThread(async () => {
await DisplayAlert("Fehler:", e, "OK");
@@ -64,8 +59,6 @@ public partial class StundenPage : ContentPage {
return Preferences.Default.Get("apiKey", "") != "";
}
-
-
private async void NavigateToTargetPage() {
await Navigation.PushAsync(new LoginPage());
}