I am currently building a mobile app using Xamarin Forms. I have the following projects
FL.Mobile (PCL) - contains common pages
FL.Mobile.Android
FL.Mobile.iOS
In our current design we have the need to display a menu when a button is clicked on our navigation bar. I am trying to find a good example in a sample or in the forums on how to implement this. On iOS it should be in the form of a UIAlertController with the style set to popover. In Android it should be implemented using a PopupWindow.
What is the best practice on how to do this? Are there any samples that I can use as a good reference?
Thanks