XFAndroidFullScreenWebView icon indicating copy to clipboard operation
XFAndroidFullScreenWebView copied to clipboard

I get black blank screen when I exit full screen

Open majdsham opened this issue 6 years ago • 1 comments

https://stackoverflow.com/questions/55707550/how-to-fix-my-problem-about-go-back-from-full-screen-webview-video-page

I'm using your plugin and it is so good and useful except the problem in the link, can you help me to solve it and I will be grateful to you.

majdsham avatar Apr 18 '19 11:04 majdsham

the soulution was like that: in PCL project, FullScreenEnabledWebView class, replace this code: var page = new ContentPage { Content = view, };

        await Application.Current.MainPage.Navigation.PushModalAsync(page);

by this: var page = new ContentPage { Content = view }; await Application.Current.MainPage.Navigation.PushModalAsync(page); page.Content.Focus();

majdsham avatar May 14 '19 11:05 majdsham