Hi, I was trying to work out something like an Android actionsheet from bottom.
As the code below, there are three buttons in ContentView, and I could swipe out more.
But after I wiped out the DrawerContentView, the top buttons cannot be clicked, which seemed like only the buttons in ContentView area can be clicked.
Any suggestion?
Also, how does the TouchThreshold work, which works like "height" in my case?
Thx.
check codes below:
<navigation:SfNavigationDrawer
x:Name="navigationDrawer"
DrawerFooterHeight="0"
DrawerHeaderHeight="0"
DrawerHeight="300"
EnableSwipeGesture="True"
Position="Bottom">
<navigation:SfNavigationDrawer.ContentView>
<StackLayout>
<Label Text="Swipe to show more actions..." />
<Button Clicked="Button_Clicked" Text="Event test" />
<Button Clicked="Button_Clicked" Text="Event test" />
<Button Clicked="Button_Clicked" Text="Event test" />
</StackLayout>
</navigation:SfNavigationDrawer.ContentView>
<!--<navigation:SfNavigationDrawer.DrawerHeaderView />-->
<navigation:SfNavigationDrawer.DrawerContentView>
<StackLayout>
<Label Text="Swipe to show more actions..." />
<Button Clicked="Button_Clicked" Text="Event test" />
<Button Clicked="Button_Clicked" Text="Event test" />
<Button Clicked="Button_Clicked" Text="Event test" />
<Button Clicked="Button_Clicked" Text="Event test" />
<Button Clicked="Button_Clicked" Text="Event test" />
</StackLayout>
</navigation:SfNavigationDrawer.DrawerContentView>
</navigation:SfNavigationDrawer>