You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Look at this example and tap or drag on the rendered html, the following exception occurs:
The following GlobalKey was specified multiple times in the widget tree. This will lead to parts of the widget tree being truncated unexpectedly, because the second time a key is seen, the previous instance is moved to the new location. The key was:
- [GlobalKey#25af9]
This was determined by noticing that after the widget with the above global key was moved out of its previous parent, that previous parent never updated during this frame, meaning that it either did not update at all or updated before the widget was moved, in either case implying that it still thinks that it should have a child with that global key.
The specific parent that did not update after having one or more children forcibly removed due to GlobalKey reparenting is:
- Html(state: _HtmlState#279ad)
A GlobalKey can only be specified on one widget at a time in the widget tree.
Would be very cool if these two widgets work together :)
Thanks, M
The text was updated successfully, but these errors were encountered:
Steps to recreate:
Look at this example and tap or drag on the rendered html, the following exception occurs:
Would be very cool if these two widgets work together :)
Thanks, M
The text was updated successfully, but these errors were encountered: