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
If you have a node that participates in a layout transition, but whose layout doesn't change, it'll still get calculatedLayoutDidChange because _pendingLayoutTransitionDidComplete calls it unconditionally:
We should either:
Not call _pendingLayoutTransitionDidComplete if there was no pending layout transition.
Pass the nullable transition as an argument, and only call calculatedLayoutDidChange if it actually changed.
The text was updated successfully, but these errors were encountered:
If you have a node that participates in a layout transition, but whose layout doesn't change, it'll still get
calculatedLayoutDidChange
because_pendingLayoutTransitionDidComplete
calls it unconditionally:We should either:
_pendingLayoutTransitionDidComplete
if there was no pending layout transition.The text was updated successfully, but these errors were encountered: