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 f611a43 commit fd576c0Copy full SHA for fd576c0
example/src/App.tsx
@@ -47,7 +47,9 @@ const HomeScreen = () => {
47
const isFocused = useIsFocused();
48
49
return (
50
- <View style={[styles.container]}>
+ <View style={styles.container}>
51
+ {/* Spacer */}
52
+ <View style={styles.container} />
53
<View style={styles.buttonContainer}>
54
<Button
55
title="Navigation"
@@ -60,8 +62,11 @@ const HomeScreen = () => {
60
62
onPress={() => isFocused && navigate('Multiple maps')}
61
63
/>
64
</View>
65
66
67
68
69
+ color="grey"
70
title="Integration Tests"
71
testID="integration_tests_button"
72
onPress={() => isFocused && navigate('Integration tests')}
0 commit comments