showInputMethod method
- @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'InputMethodManager.showSoftInput', apiUrl: 'https://developer.android.com/reference/android/view/inputmethod/InputMethodManager#showSoftInput(android.view.View,%20int)')])
inherited
Explicitly request that the current input method's soft input area be shown to the user, if needed.
Implementation
@SupportedPlatforms(
platforms: [
AndroidPlatform(
apiName: 'InputMethodManager.showSoftInput',
apiUrl:
'https://developer.android.com/reference/android/view/inputmethod/InputMethodManager#showSoftInput(android.view.View,%20int)',
),
],
)
Future<void> showInputMethod() {
throw UnimplementedError(
'${PlatformInAppWebViewControllerMethod.showInputMethod.name} is not implemented on the current platform',
);
}