We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4343af6 commit 8c8f315Copy full SHA for 8c8f315
1 file changed
src/components/Stack.tsx
@@ -70,7 +70,7 @@ export default class Stack<T extends Route> extends React.Component<
70
<View
71
style={styles.container}
72
onLayout={this.handleLayout}
73
- pointerEvents={layout.height && layout.width ? 'auto' : 'none'}
+ pointerEvents={layout.height && layout.width ? 'box-none' : 'none'}
74
>
75
{routes.map((route, index, self) => {
76
const focused = index === self.length - 1;
@@ -82,6 +82,7 @@ export default class Stack<T extends Route> extends React.Component<
82
importantForAccessibility={
83
focused ? 'auto' : 'no-hide-descendants'
84
}
85
+ pointerEvents="box-none"
86
style={StyleSheet.absoluteFill}
87
88
{renderScene(
0 commit comments