Hi,
I have been using Syncfusion controls but for navigation consuming native Xamarin.Forms structure.
The weird thing is that iOS navigation menu icon (a.k.a hamburger icon) is not seen but clickable whereas I don't have such an issue for Android app.
I have tried to add following code but did not work. I have checked Expense Analysis tutorial at your github and there is no such an issue. However, I couldn't see the difference.
Thanks in advance for your precious support.
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
// Initialization methods to launch Syncfusion controls in iOS
SfButtonRenderer.Init();
SfGradientViewRenderer.Init();
SfTextInputLayoutRenderer.Init();
LoadApplication(new App());
new SfMaskedEditRenderer();
new SfNumericTextBoxRenderer();
UINavigationBar.Appearance.TintColor = UIColor.Black;
return base.FinishedLaunching(app, options);
}
iOS

ANDROID
