Skip to content

Commit

Permalink
Bottom Sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
wyne committed Nov 13, 2023
1 parent 9c1066a commit 38731c2
Show file tree
Hide file tree
Showing 6 changed files with 858 additions and 16 deletions.
15 changes: 9 additions & 6 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,19 @@ import { store, persistor } from './redux/store';
import { StatusBar } from 'expo-status-bar';
import { Navigation } from './src/Navigation';
import { View } from 'react-native';
import { GestureHandlerRootView } from 'react-native-gesture-handler';

export default function App() {
return (
<View style={{ flex: 1, backgroundColor: '#fff' }}>
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<StatusBar />
<Navigation />
</PersistGate>
</Provider>
<GestureHandlerRootView style={{ flex: 1 }}>
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<StatusBar />
<Navigation />
</PersistGate>
</Provider>
</GestureHandlerRootView>
</View>
);
};
Loading

0 comments on commit 38731c2

Please sign in to comment.