File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/react-native/ReactAndroid/src
main/java/com/facebook/react/uimanager/style
test/java/com/facebook/react/uimanager Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,10 @@ internal data class BorderRadiusStyle(
136
136
(startStart ? : topStart ? : topLeft ? : uniform)?.resolve(width, height)
137
137
? : zeroRadii,
138
138
bottomLeft =
139
- (endEnd ? : bottomStart ? : bottomRight ? : uniform)?.resolve(width, height)
139
+ (endEnd ? : bottomEnd ? : bottomRight ? : uniform)?.resolve(width, height)
140
140
? : zeroRadii,
141
141
bottomRight =
142
- (startEnd ? : bottomEnd ? : bottomLeft ? : uniform)?.resolve(width, height)
142
+ (startEnd ? : bottomStart ? : bottomLeft ? : uniform)?.resolve(width, height)
143
143
? : zeroRadii,
144
144
width = width,
145
145
height = height,
Original file line number Diff line number Diff line change @@ -88,13 +88,13 @@ class BorderRadiusStyleTest {
88
88
arrayOf(
89
89
BorderRadiusProp .BORDER_RADIUS ,
90
90
BorderRadiusProp .BORDER_BOTTOM_RIGHT_RADIUS ,
91
- BorderRadiusProp .BORDER_BOTTOM_START_RADIUS ,
91
+ BorderRadiusProp .BORDER_BOTTOM_END_RADIUS ,
92
92
BorderRadiusProp .BORDER_END_END_RADIUS ),
93
93
ComputedBorderRadiusProp .COMPUTED_BORDER_BOTTOM_RIGHT_RADIUS to
94
94
arrayOf(
95
95
BorderRadiusProp .BORDER_RADIUS ,
96
96
BorderRadiusProp .BORDER_BOTTOM_LEFT_RADIUS ,
97
- BorderRadiusProp .BORDER_BOTTOM_END_RADIUS ,
97
+ BorderRadiusProp .BORDER_BOTTOM_START_RADIUS ,
98
98
BorderRadiusProp .BORDER_START_END_RADIUS ),
99
99
)
100
100
You can’t perform that action at this time.
0 commit comments