问题
I included the keyboardoverlap
plugin in IOS project and added KeyboardOverlapRenderer.Init()
after Xamarin.Forms.Init();
And when I focus Entry, it doesn't move up. I am not using any custom renderer for ContentPage.
What is the solution for this?
Screenshot:
My AppDelegate.cs
Code: Have multiple init codes, is that affect the keyboard overlap feature?
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
Rg.Plugins.Popup.Popup.Init();
global::Xamarin.Forms.Forms.Init();
KeyboardOverlapRenderer.Init();
ImageCircleRenderer.Init();
LoadApplication(new App(""));
return base.FinishedLaunching(app, options);
}
来源:https://stackoverflow.com/questions/53516022/xamarin-forms-keyboard-overlap-issue-exist-after-installing-keyboardoverlap-pl