isInFullscreen method

Future<bool> isInFullscreen()

Returns true if the WebView is in fullscreen mode, otherwise false.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS

Implementation

Future<bool> isInFullscreen() {
  throw UnimplementedError(
      'isInFullscreen is not implemented on the current platform');
}