diff options
Diffstat (limited to 'App.tsx')
| -rw-r--r-- | App.tsx | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,10 +1,16 @@ -import React, {Suspense} from 'react'; -import {SafeAreaView, View} from 'react-native'; +import React, {Suspense, useEffect} from 'react'; +import {BackHandler, SafeAreaView, View} from 'react-native'; import {GestureHandlerRootView} from 'react-native-gesture-handler'; import {AppView} from './src/AppView'; import {Provider as JotaiProvider} from 'jotai'; const App: React.FC = () => { + // Disable back button + useEffect(() => { + const sub = BackHandler.addEventListener('hardwareBackPress', () => true); + return () => sub.remove(); + }, []); + return ( <Suspense fallback={<View className="flex flex-1 bg-black" />}> <JotaiProvider> |
