isLoading method

  1. @override
Future<bool> isLoading()

Check if the WebView instance is in a loading state.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS
  • Web
  • Windows

Implementation

@override
Future<bool> isLoading() async {
  return await _channel.invokeMethod<bool>('isLoading') ?? false;
}