I need a complex menu with multiple options so the toolbar is not really an option.
I have a Radial menu configured using SyncFusion's SfRadialMenu, but I am having SERIOUS issues trying to get it to display....
Every sample I can find just shows the menu as the only object on a page, so I've been doing a lot of experimenting, but would like to see if anyone has some sample code or advice to help with my issues?
I have created a ContentView that I have my menu built in so I can call it from multiple other pages, but because of my page layouts the menu is having 2 major issues.
1: The menu will not move, even with dragenabled turned on.
2: The menu has a Z layer below everything else, so some of my experimentation has the menu behind other controls.
Is there a way to specify a Z layer? and I assume that the lack of mobility has to do with the implementation constraining to the bounds of what ever control it's parent is. How can I place the menu and have it dragable over the rest of the page?
pseudo code for the implementation would look like this
[app.xaml]
...
<ContentPage.Content>
<StackLayout>
<ScrollView Orientation="Both">
<AbsoluteLayout>
<Grid>
<!-- this is my radial menu content.view -->
<converter:RadialMenuPage/>
<grid layout page conent.....>
Thanks again!