fix non scrollable editor exception, when tapped under content

pull/1167/head
Aleksej Demkin 2 years ago
parent 160006c4de
commit 2ffce064c8
No known key found for this signature in database
GPG Key ID: 6B5032D8B96790A8
  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