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 38a8e61 commit 690220dCopy full SHA for 690220d
samples/expo/app/(tabs)/index.tsx
@@ -1,6 +1,7 @@
1
import { Button, StyleSheet } from 'react-native';
2
import Constants from 'expo-constants';
3
import * as Sentry from '@sentry/react-native';
4
+import { reloadAppAsync } from 'expo';
5
6
import { Text, View } from '@/components/Themed';
7
import { setScopeProperties } from '@/utils/setScopeProperties';
@@ -82,6 +83,7 @@ export default function TabOneScreen() {
82
83
console.log('Sentry.close() completed.');
84
}}
85
/>
86
+ <Button title="Reload" onPress={() => reloadAppAsync()} />
87
</View>
88
);
89
}
0 commit comments