startStylusHandwriting static method

Future<void> startStylusHandwriting()

Tell Android to begin receiving stylus handwriting input.

This is typically called after detecting a PointerDownEvent from a PointerDeviceKind.stylus on an active text field, indicating the start of stylus handwriting input. If there is no active TextInputConnection, the call will be ignored.

Call isFeatureAvailable each time before calling this to make sure that stylus handwriting input is supported and available.

Supported on Android API 33 and above.

See also:

Implementation

static Future<void> startStylusHandwriting() {
  return _channel.invokeMethod<void>('Scribe.startStylusHandwriting');
}