Error message when TextSelectionOverlay finds no Overlay (#29329)

This commit is contained in:
Hans Muller 2019-03-14 09:19:47 -07:00 committed by GitHub
parent 97a8120969
commit 4e84256642
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,7 +254,10 @@ class TextSelectionOverlay {
assert(context != null),
_value = value {
final OverlayState overlay = Overlay.of(context);
assert(overlay != null);
assert(overlay != null,
'No Overlay widget exists above $context.\n'
'Usually the Navigator created by WidgetsApp provides the overlay. Perhaps your '
'app content was created above the Navigator with the WidgetsApp builder parameter.');
_toolbarController = AnimationController(duration: fadeDuration, vsync: overlay);
}