findMobileDownstreamDragHandle static method
Implementation
static Finder findMobileDownstreamDragHandle([Finder? superReaderFinder]) {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
case TargetPlatform.iOS:
return find.byKey(DocumentKeys.downstreamHandle);
case TargetPlatform.macOS:
case TargetPlatform.windows:
case TargetPlatform.linux:
case TargetPlatform.fuchsia:
return FindsNothing();
}
}