mhaggag/XFAndroidFullScreenWebView

I get black blank screen when I exit full screen

Opened this issue · 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.

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();