Xamarin forms : Keyboard overlap issue exist after installing keyboardoverlap plugin in IOS

一笑奈何 提交于 2020-01-03 05:17:07

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!