The Xamarin.Forms Hamburger menu has passed after upgrading to Xamarin.Forms 2.2

After I upgraded the Xamarin.Forms project from Xamarin.Forms 2.0 to Xamarin.Forms 2.2, the hamburgers icon disappeared.

I searched googled with no luck, did anyone experience the same problem?

+6
source share
1 answer

If the default icon has disappeared, you can set your own homepage icon, for example:

public class MasterPage : MasterDetailPage { FlyOutMenuPage menu = new FlyOutMenuPage (); Master = menu; } public class FlyOutMenuPage : ContentPage { Icon = "menu.png"; } 

And menu.png is a resource image, you can get a lot of icons here:

https://www.iconfinder.com/search/?q=hamburger&price=free

+4
source

All Articles