Update SubscriptionOfferPopup layout and adjust application version to 1.280

This commit is contained in:
Max Mannstein 2025-10-05 14:14:26 +02:00
parent ddaf7e0e28
commit 4bcc524b2c
3 changed files with 6 additions and 6 deletions

View File

@ -32,11 +32,11 @@ public partial class RegisterView : BaseContentPage
await ViewModel.DisappearingAsync(this); await ViewModel.DisappearingAsync(this);
} }
//Workaround für den IOS-Bug der Höhenberechnung! Siehe https://github.com/dotnet/maui/issues/8820 //Workaround f<EFBFBD>r den IOS-Bug der H<>henberechnung! Siehe https://github.com/dotnet/maui/issues/8820
private void rootGrid_SizeChanged(object sender, EventArgs e) private void rootGrid_SizeChanged(object sender, EventArgs e)
{ {
#if IOS #if IOS
((IView)rootScrollView).InvalidateMeasure(); // ((IView)rootScrollView).InvalidateMeasure();
#endif #endif
} }
} }

View File

@ -12,7 +12,6 @@
VerticalOptions="Center"> VerticalOptions="Center">
<Grid <Grid
Padding="24"
RowDefinitions="Auto,*,Auto"> RowDefinitions="Auto,*,Auto">
<!-- Close Button --> <!-- Close Button -->
@ -32,7 +31,7 @@
<!-- Content Bereich --> <!-- Content Bereich -->
<VerticalStackLayout <VerticalStackLayout
Grid.Row="1" Grid.Row="1"
Margin="0,12,0,0"
HorizontalOptions="Center" HorizontalOptions="Center"
Spacing="16" Spacing="16"
VerticalOptions="Center"> VerticalOptions="Center">
@ -42,6 +41,7 @@
HeightRequest="120" HeightRequest="120"
HorizontalOptions="Center" HorizontalOptions="Center"
Source="coins.png" Source="coins.png"
Margin="0,-30,0,0"
VerticalOptions="Center" VerticalOptions="Center"
WidthRequest="120" /> WidthRequest="120" />

View File

@ -22,8 +22,8 @@
<ApplicationIdGuid>284D2BDB-7FFC-485A-968F-8440A92578FE</ApplicationIdGuid> <ApplicationIdGuid>284D2BDB-7FFC-485A-968F-8440A92578FE</ApplicationIdGuid>
<!-- Versions --> <!-- Versions -->
<ApplicationDisplayVersion>1.278</ApplicationDisplayVersion> <ApplicationDisplayVersion>1.280</ApplicationDisplayVersion>
<ApplicationVersion>278</ApplicationVersion> <ApplicationVersion>280</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">29.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">29.0</SupportedOSPlatformVersion>