disableFullScreen method

void disableFullScreen(
  1. BuildContext context
)

Disables fullscreen mode.

If onToggleFullScreen is set, you must handle the device orientation by yourself.

Implementation

void disableFullScreen(BuildContext context) {
  uni_html.document.exitFullscreen();

  if (!_ctr.isWebPopupOverlayOpen) {
    _ctr.disableFullScreen(context, getTag);
  }
}