Mateusz
Results
1
comments of
Mateusz
On FullScreenEnabledWebViewRenderer.cs `private void OnEnterFullscreenRequested( object sender, EnterFullScreenRequestedEventArgs eventArgs) { if (_webView.EnterFullScreenCommand != null && _webView.EnterFullScreenCommand.CanExecute(null)) { _webView.EnterFullScreenCommand.Execute(eventArgs.View.ToView()); var activity = Context.GetActivity(); int uiOptions = (int)activity.Window.DecorView.SystemUiVisibility; uiOptions |= (int)SystemUiFlags.LowProfile; uiOptions...