mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-05 07:07:26 +08:00
Implementing space-evenly
Summary:
So in v0.52.0 space-evenly is introduced but not yet implemented (1050e0b by woehrl01). This pull request implements the space-evenly.
Manual Testing.

[IOS] [FEATURE] [Yoga] Adding space-evenly on justify-content in iOS
[ANDROID] [FEATURE] [Yoga] - Adding space-evenly on justify-content in Android
Closes https://github.com/facebook/react-native/pull/17805
Differential Revision: D6858294
Pulled By: shergin
fbshipit-source-id: 7a705ca05f58603ef4588e1bfd16c16a78f8a390
This commit is contained in:
committed by
Facebook Github Bot
parent
3fbf7856d9
commit
b1cdb7d553
@@ -486,6 +486,10 @@ public class LayoutShadowNode extends ReactShadowNodeImpl {
|
||||
setJustifyContent(YogaJustify.SPACE_AROUND);
|
||||
break;
|
||||
}
|
||||
case "space-evenly": {
|
||||
setJustifyContent(YogaJustify.SPACE_EVENLY);
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
throw new JSApplicationIllegalArgumentException(
|
||||
"invalid value for justifyContent: " + justifyContent);
|
||||
|
||||
Reference in New Issue
Block a user