1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Fix icon image size to be adaptive on Large Font Size Accessibility which fixes row height on large vault (#1795)

This commit is contained in:
Federico Maccaroni
2022-02-22 12:33:38 -03:00
committed by GitHub
parent 04f4ad48f0
commit 23ca0f4b93
2 changed files with 12 additions and 6 deletions

View File

@@ -39,15 +39,16 @@
AutomationProperties.IsInAccessibleTree="False" />
<ff:CachedImage
x:Name="_iconImage"
Grid.Column="0"
BitmapOptimizations="True"
ErrorPlaceholder="login.png"
LoadingPlaceholder="login.png"
HorizontalOptions="Fill"
VerticalOptions="Fill"
HorizontalOptions="CenterAndExpand"
VerticalOptions="CenterAndExpand"
Margin="9"
MinimumWidthRequest="22"
MinimumHeightRequest="22"
WidthRequest="22"
HeightRequest="22"
Aspect="AspectFit"
IsVisible="{Binding ShowIconImage}"
Source="{Binding IconImageSource, Mode=OneTime}"