forAndroid method

Configures the SuperEditor for standard Android interactions, e.g., touch gestures and IME input.

Implementation

TestSuperEditorConfigurator forAndroid() {
  _config.gestureMode = DocumentGestureMode.android;
  _config.inputSource = TextInputSource.ime;
  return this;
}