Use the following code deployed to UWP to reproduce. Observe the following:
- Inability to interact with the Button (unless you move the button outside the invisible gesture detection area)
- Gestures are still active even though they're disabled
<telerikPrimitives:RadSideDrawer DrawerLength="400"
AreGesturesEnabled="false"
DrawerLocation="Bottom"
DrawerTransitionType="SlideInOnTop"
DrawerTransitionDuration="0.2"
IsOpen="False">
<telerikPrimitives:RadSideDrawer.DrawerContent>
<StackLayout VerticalOptions="FillAndExpand"
BackgroundColor="GreenYellow">
<Label Text="DrawerContent"
VerticalOptions="FillAndExpand"/>
</StackLayout>
</telerikPrimitives:RadSideDrawer.DrawerContent>
<telerikPrimitives:RadSideDrawer.MainContent>
<Grid BackgroundColor="LightBlue">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Label Text="Demo"
VerticalOptions="Fill"/>
<Button VerticalOptions="End"
HorizontalOptions="Fill"
Text="Click Me!"
Clicked="Button_OnClicked"
BackgroundColor="LightGray"
FontSize="12"
HeightRequest="20"
Grid.Row="1"/>
</Grid>
</telerikPrimitives:RadSideDrawer.MainContent>
</telerikPrimitives:RadSideDrawer>