1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-08 03:23:23 +00:00

PM-5902 fix for account switcher not dismissing when tapping outside (#2974)

This commit is contained in:
Dinis Vieira
2024-02-01 21:44:13 +00:00
committed by GitHub
parent b23bed182f
commit 7ddea4c70b

View File

@@ -12,12 +12,14 @@
BackgroundColor="#22000000"
Padding="0"
IsVisible="False">
<VerticalStackLayout
<Grid
x:Name="_accountListContainer"
VerticalOptions="Fill"
HorizontalOptions="FillAndExpand"
BackgroundColor="Transparent">
HorizontalOptions="Fill"
BackgroundColor="Transparent"
RowDefinitions="Auto, *">
<Frame
Grid.Row="0"
Padding="0"
HorizontalOptions="Fill"
VerticalOptions="Start">
@@ -49,12 +51,13 @@
</ListView>
</Frame>
<BoxView
Grid.Row="1"
BackgroundColor="Transparent"
HorizontalOptions="Fill"
VerticalOptions="FillAndExpand">
VerticalOptions="Fill">
<BoxView.GestureRecognizers>
<TapGestureRecognizer Tapped="FreeSpaceOverlay_Tapped" />
</BoxView.GestureRecognizers>
</BoxView>
</VerticalStackLayout>
</Grid>
</ContentView>