Skip to content

Commit

Permalink
fix(ios): fix wrap-reverse layout
Browse files Browse the repository at this point in the history
  • Loading branch information
ozonelmy committed Apr 26, 2021
1 parent 391bafd commit e5c2ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/sdk/utils/HippyConvert.mm
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ + (NSPropertyList)NSPropertyList:(id)json {

HIPPY_ENUM_CONVERTER(PositionType, (@{ @"absolute": @(PositionTypeAbsolute), @"relative": @(PositionTypeRelative) }), PositionTypeRelative, intValue)

HIPPY_ENUM_CONVERTER(FlexWrapMode, (@{ @"wrap": @(FlexWrap), @"nowrap": @(FlexNoWrap) }), FlexNoWrap, intValue)
HIPPY_ENUM_CONVERTER(FlexWrapMode, (@{ @"wrap": @(FlexWrap), @"nowrap": @(FlexNoWrap), @"wrap-reverse": @(FlexWrapReverse) }), FlexNoWrap, intValue)

HIPPY_ENUM_CONVERTER(
DisplayType, (@{ @"flex": @(DisplayTypeFlex), @"block": @(DisplayTypeFlex), @"none": @(DisplayTypeNone) }), DisplayTypeFlex, intValue)
Expand Down

0 comments on commit e5c2ab9

Please sign in to comment.