1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-14 15:23:35 +00:00

PM-3350 Added Scrollview on HomePage so that the "Create account" button can be accessed in smaller devices like iPhone SE.

This commit is contained in:
Dinis Vieira
2023-10-29 21:34:33 +00:00
parent 484b5a5160
commit e90409d842

View File

@@ -31,7 +31,8 @@
<ContentPage.Resources> <ContentPage.Resources>
<ResourceDictionary> <ResourceDictionary>
<u:InverseBoolConverter x:Key="inverseBool" /> <u:InverseBoolConverter x:Key="inverseBool" />
<StackLayout x:Name="_mainLayout" x:Key="mainLayout" Spacing="30" Padding="20, 50, 20, 0"> <ScrollView x:Name="_mainLayout" x:Key="mainLayout">
<StackLayout Spacing="30" Padding="20, 50, 20, 0">
<Image <Image
x:Name="_logo" x:Name="_logo"
Source="logo.png" Source="logo.png"
@@ -123,6 +124,7 @@
</Label.GestureRecognizers> </Label.GestureRecognizers>
</Label> </Label>
</StackLayout> </StackLayout>
</ScrollView>
</ResourceDictionary> </ResourceDictionary>
</ContentPage.Resources> </ContentPage.Resources>