setInputMethodEnabled method

  1. @SupportedPlatforms.new(platforms: [IOSPlatform(apiName: 'UIResponder.inputView', apiUrl: 'https://developer.apple.com/documentation/uikit/uiresponder/1621092-inputview')])
Future<void> setInputMethodEnabled(
  1. bool enabled
)
inherited

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

Implementation

@SupportedPlatforms(
  platforms: [
    IOSPlatform(
      apiName: 'UIResponder.inputView',
      apiUrl:
          'https://developer.apple.com/documentation/uikit/uiresponder/1621092-inputview',
    ),
  ],
)
Future<void> setInputMethodEnabled(bool enabled) {
  throw UnimplementedError(
    '${PlatformInAppWebViewControllerMethod.setInputMethodEnabled.name} is not implemented on the current platform',
  );
}