Skip to content
Yoga is a cross-platform layout engine which implements Flexbox. Follow https://twitter.com/yogalayout for updates.
Branch: master
Clone or download
davidaurelio and facebook-github-bot Code formatting: allow short inline methods on one line
Summary:
@public

This allows short methods defined in class declarations to occupy a single line.
The change makes class declarations more readable.

Reviewed By: SidharthGuglani

Differential Revision: D14950012

fbshipit-source-id: 1321949475184181c6cceb86613f730e430763e2
Latest commit e9bb1ef Apr 16, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github
ReactYoga.xcodeproj
YogaDev.xcworkspace
YogaDev/YogaDev.xcodeproj Adds workspace for more efficient yoga development Mar 26, 2019
YogaKit Sample workspace: remove XML comment Mar 22, 2019
android Automatic lint fixes Mar 25, 2019
benchmark
csharp JNI: set language level to C++11 Apr 9, 2019
gentest
gradle updated gradle build tool version to 3.1.0 and gradle to 4.6 Feb 12, 2019
java Code formatting: allow short inline methods on one line Apr 16, 2019
javascript Fix bugs around `align-content` Apr 8, 2019
lib JNI: set language level to C++11 Apr 9, 2019
mode
scripts Pin cmake version to 3.6 Feb 14, 2019
tests Code formatting: allow short inline methods on one line Apr 16, 2019
tools/build_defs
website fixing playground links Apr 4, 2019
yoga Code formatting: allow short inline methods on one line Apr 16, 2019
yogacore Added Copyright Header Oct 24, 2018
.buckconfig
.clang-format Code formatting: allow short inline methods on one line Apr 16, 2019
.clang-format-ignore Add `.clang-format` Jan 8, 2019
.editorconfig Add .editorconfig May 27, 2017
.gitignore
.gitmodules Add googletest submodule Nov 16, 2016
.swift-version
.travis.yml
BUCK
CMakeLists.txt
CODE_OF_CONDUCT.md Update CoC for various projects Aug 2, 2018
CONTRIBUTING.md Update CoC for various projects Aug 2, 2018
LICENSE
LICENSE-examples
README.md
Yoga.podspec
YogaKit.podspec
build.gradle updated gradle build tool version to 3.1.0 and gradle to 4.6 Feb 12, 2019
enums.py
gradle.properties Add `-SNAPSHOT` to gradle version Apr 8, 2019
gradlew
settings.gradle Added Copyright Header Oct 24, 2018
third-party(Yoga).xcconfig Adds workspace for more efficient yoga development Mar 26, 2019

README.md

Yoga CocoaPods npm bintray NuGet

Building

Yoga builds with buck. Make sure you install buck before contributing to Yoga. Yoga's main implementation is in C, with bindings to supported languages and frameworks. When making changes to Yoga please ensure the changes are also propagated to these bindings when applicable.

Testing

For testing we rely on gtest as a submodule. After cloning Yoga run git submodule init followed by git submodule update.

For any changes you make you should ensure that all the tests are passing. In case you make any fixes or additions to the library please also add tests for that change to ensure we don't break anything in the future. Tests are located in the tests directory. Run the tests by executing buck test //:yoga.

Instead of manually writing a test which ensures parity with web implementations of Flexbox you can run gentest/gentest.rb to generate a test for you. You can write html which you want to verify in Yoga, in gentest/fixtures folder, such as the following.

<div id="my_test" style="width: 100px; height: 100px; align-items: center;">
  <div style="width: 50px; height: 50px;"></div>
</div>

Run gentest/gentest.rb to generate test code and re-run buck test //:yoga to validate the behavior. One test case will be generated for every root div in the input html.

You may need to install the latest watir-webdriver gem (gem install watir-webdriver) and ChromeDriver to run gentest/gentest.rb Ruby script.

.NET

.NET testing is not integrated in buck yet, you might need to set up .NET testing environment. We have a script which to launch C# test on macOS, csharp/tests/Facebook.Yoga/test_macos.sh.

Benchmarks

Benchmarks are located in benchmark/YGBenchmark.c and can be run with buck run //benchmark:benchmark. If you think your change has affected performance please run this before and after your change to validate that nothing has regressed. Benchmarks are run on every commit in CI.

JavaScript

Installing through NPM

npm install yoga-layout

By default this will install the library and try to build for all platforms (node, browser asm, and standalone webpack). You may receive errors if you do not have the required platform development tools already installed. To preset the platform you'd like to build for you can set a .npmrc property first.

npm config set yoga-layout:platform standalone

This will now only run the standalone webpack build upon install.

Build Platforms

name description
all (default) Builds all of these platforms.
browser Builds asm js browser version.
node Builds node js version.
standalone Runs webpack.
none Does nothing. You can use the prepackaged libs.
You can’t perform that action at this time.