fix non scrollable editor exception, when tapped under content (#1167)

pull/1168/head
spChief 2 years ago committed by GitHub
parent 160006c4de
commit 2ea29d56a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      lib/src/widgets/editor.dart

@ -1794,7 +1794,10 @@ class RenderEditableContainerBox extends RenderBox
dy += child.size.height;
child = childAfter(child);
}
throw StateError('No child at offset $offset.');
// this case possible, when editor not scrollable,
// but minHeight > content height and tap was under content
return lastChild!;
}
@override

Loading…
Cancel
Save