Skip to content

Commit 922219a

Browse files
RSNarafacebook-github-bot
authored andcommitted
Fix ScrollView Static ViewConfigs
Summary: This should fix the SVC === NVC check for ScrollView and AndroidHorizontalScrollView. Changelog: [Internal] Reviewed By: p-sun Differential Revision: D34542873 fbshipit-source-id: 7e25d3a6c1417877b64501981652d767ba2eda48
1 parent 5c8d95b commit 922219a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export const __INTERNAL_VIEW_CONFIG: PartialViewConfig = {
5050
removeClippedSubviews: true,
5151
borderTopRightRadius: true,
5252
borderLeftColor: {process: require('../../StyleSheet/processColor')},
53+
pointerEvents: true,
5354
},
5455
};
5556

Libraries/Components/ScrollView/ScrollViewNativeComponent.js

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export const __INTERNAL_VIEW_CONFIG: PartialViewConfig =
7474
removeClippedSubviews: true,
7575
borderTopRightRadius: true,
7676
borderLeftColor: {process: require('../../StyleSheet/processColor')},
77+
pointerEvents: true,
7778
},
7879
}
7980
: {

0 commit comments

Comments
 (0)