Skip to content

Commit 0ee6688

Browse files
RSNarafacebook-github-bot
authored andcommitted
Fix SVC for AndroidHorizontalScrollView
Summary: ## Failure ``` LOG { "missing": { "validAttributes": { "borderBottomLeftRadius": true, "borderRightColor": { "process": "[Function processColor]" }, "borderRadius": true, "borderLeftColor": { "process": "[Function processColor]" }, "borderColor": { "process": "[Function processColor]" }, "borderTopRightRadius": true, "borderBottomColor": { "process": "[Function processColor]" }, "borderTopColor": { "process": "[Function processColor]" }, "borderStyle": true, "borderBottomRightRadius": true, "borderTopLeftRadius": true, "removeClippedSubviews": true } }, "unexpected": {}, "unequal": [] } ``` Changelog: [Internal] Reviewed By: mdvacca Differential Revision: D33341777 fbshipit-source-id: c44661411e690b4536d9e979b79f34e200c3720b
1 parent 5bc7b02 commit 0ee6688

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ const AndroidHorizontalScrollViewNativeComponent: HostComponent<Props> =
3636
snapToStart: true,
3737
snapToOffsets: true,
3838
contentOffset: true,
39+
borderBottomLeftRadius: true,
40+
borderBottomRightRadius: true,
41+
borderRadius: true,
42+
borderStyle: true,
43+
borderRightColor: {process: require('../../StyleSheet/processColor')},
44+
borderColor: {process: require('../../StyleSheet/processColor')},
45+
borderBottomColor: {process: require('../../StyleSheet/processColor')},
46+
borderTopLeftRadius: true,
47+
borderTopColor: {process: require('../../StyleSheet/processColor')},
48+
removeClippedSubviews: true,
49+
borderTopRightRadius: true,
50+
borderLeftColor: {process: require('../../StyleSheet/processColor')},
3951
},
4052
}));
4153

0 commit comments

Comments
 (0)