findMobileExpandedDragHandles static method

Finder findMobileExpandedDragHandles([
  1. Finder? superEditorFinder
])

Implementation

static Finder findMobileExpandedDragHandles([Finder? superEditorFinder]) {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
    case TargetPlatform.iOS:
      return find.byWidgetPredicate(
        (widget) => widget.key == DocumentKeys.upstreamHandle || widget.key == DocumentKeys.downstreamHandle,
      );
    case TargetPlatform.macOS:
    case TargetPlatform.windows:
    case TargetPlatform.linux:
    case TargetPlatform.fuchsia:
      return FindsNothing();
  }
}