Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1698 Reviewed By: joevilches Differential Revision: D63059081 Pulled By: realsoelynn fbshipit-source-id: 73d6d10685c7b4ddef828f17b7113f314397f90d
642 B
642 B
sidebar_position
sidebar_position |
---|
1 |
About Yoga
Yoga is an embeddable layout system used in popular UI frameworks like React Native. Yoga itself is not a UI framework, and does not do any drawing itself. Yoga's only responsibility is determining the size and position of boxes.
Yoga supports a familiar subset of CSS, mostly focused on Flexbox. This gives users a familiar model, and enables sharing code between native platforms and the browser.
Yoga is written in C++, with a public C API. This allows Yoga to be used by a wide variety of languages, via both official and unofficial bindings.