setInputMethodEnabled method

Future<void> setInputMethodEnabled(
  1. bool enabled
)

Enables/Disables the input method (system-supplied keyboard) whilst interacting with the webview.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • enabled: all platforms

Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.

Implementation

Future<void> setInputMethodEnabled(bool enabled) =>
    platform.setInputMethodEnabled(enabled);