Yoga Updated - Why is some of my UI broken? #5684
handsomematt
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We updated our UI layout engine Yoga to 3.0 the latest version.
You can view their full release notes here: https://www.yogalayout.dev/blog/announcing-yoga-3.0
Highlights include:
However the improvements to layout correctness were potentially breaking changes on UI that relied on the broken behaviors, here's some things to be aware of:
position: absolute
elements are in the wrong place, you probably needposition: relative
on the parent. This is becauseposition: static
is the default but it behaved like relative before.If anything else is broken, let us know.
Beta Was this translation helpful? Give feedback.
All reactions