Skip to content

Commit 3e34b0b

Browse files
committed
Remove pointer events from container filling scroll views as it seems that this breaks Android.
1 parent 93062c1 commit 3e34b0b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

react-native/components/ContainerFillingScrollView/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export const ContainerFillingScrollView: React.FunctionComponent<
1818
ScrollViewProps
1919
> = (props) => (
2020
<ScrollView
21-
pointerEvents="box-none"
2221
style={styles.scrollView}
2322
contentContainerStyle={styles.scrollViewContentContainer}
2423
keyboardShouldPersistTaps="handled"

react-native/components/ContainerFillingScrollView/unit.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ test(`renders as expected`, () => {
1616
decelerationRate="fast"
1717
style={{ width: `100%`, height: `100%` }}
1818
contentContainerStyle={{ flexGrow: 1 }}
19-
pointerEvents="box-none"
2019
keyboardShouldPersistTaps="handled"
2120
>
2221
<Text>Test Content</Text>

0 commit comments

Comments
 (0)