mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 10:28:28 +03:00
Fix truncated bottom on Password generator when large font size is set on Android (#1782)
This commit is contained in:
parent
95581bd4d9
commit
02562be8c7
2 changed files with 241 additions and 237 deletions
|
@ -36,6 +36,10 @@
|
|||
</ResourceDictionary>
|
||||
</ContentPage.Resources>
|
||||
|
||||
<!--WORKAROUND: Wrapped in a ContentView to fix bottom screen but when using large font size on Android.
|
||||
Check when https://github.com/xamarin/Xamarin.Forms/pull/15076 is released that may fix this without wrapping
|
||||
in ContentView.-->
|
||||
<ContentView>
|
||||
<ScrollView Padding="0, 0, 0, 20">
|
||||
<StackLayout Spacing="0" Padding="0">
|
||||
<StackLayout StyleClass="box">
|
||||
|
@ -161,9 +165,9 @@
|
|||
<Label
|
||||
Text="{Binding Length}"
|
||||
StyleClass="box-sub-label"
|
||||
WidthRequest="30"
|
||||
VerticalOptions="CenterAndExpand"
|
||||
HorizontalTextAlignment="End" />
|
||||
HorizontalTextAlignment="End"
|
||||
WidthRequest="50" />
|
||||
<controls:ExtendedSlider
|
||||
DragCompleted="LengthSlider_DragCompleted"
|
||||
Value="{Binding Length}"
|
||||
|
@ -282,5 +286,5 @@
|
|||
</StackLayout>
|
||||
</StackLayout>
|
||||
</ScrollView>
|
||||
|
||||
</ContentView>
|
||||
</pages:BaseContentPage>
|
||||
|
|
|
@ -363,7 +363,7 @@
|
|||
<Setter Property="Orientation"
|
||||
Value="Horizontal" />
|
||||
<Setter Property="Spacing"
|
||||
Value="10" />
|
||||
Value="5" />
|
||||
</Style>
|
||||
<Style TargetType="Button"
|
||||
ApplyToDerivedTypes="True"
|
||||
|
|
Loading…
Reference in a new issue