I get black blank screen when I exit full screen
Opened this issue · 1 comments
majdmam commented
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.
majdmam commented
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();