naweed / Maui.Controls.BottomSheet

Bottom Sheet control built using .Net Maui
MIT License
147 stars 21 forks source link

Input transparency #4

Open kissgyula opened 1 year ago

kissgyula commented 1 year ago

Is it possible to have input transparent backdrop with this?

naweed commented 1 year ago

This is currently a bug in Maui on the Android side. However, this temporary hack will do the trick for you. Add this on the background grid:

        <Grid.GestureRecognizers>
            <TapGestureRecognizer Command="{x:Null}" />
        </Grid.GestureRecognizers>