-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.tsx
63 lines (59 loc) · 1.61 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import Constants from 'expo-constants';
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import 'react-native-gesture-handler';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator, TransitionPresets } from '@react-navigation/stack';
import Details from './WebViewContainer';
type RootStackParamList = {
Home: undefined;
Details: undefined;
};
const Stack = createStackNavigator<RootStackParamList>();
const App = () => {
return (
<View style={styles.container}>
<StatusBar style="light" />
<NavigationContainer>
<Stack.Navigator
initialRouteName="Details"
screenOptions={{
...TransitionPresets.SlideFromRightIOS,
headerShown: false,
}}
>
<Stack.Screen
options={{
transitionSpec: {
open: {
animation: 'spring',
config: {
stiffness: 2000,
damping: 1000,
},
},
close: {
animation: 'spring',
config: {
stiffness: 1000,
damping: 500,
},
},
},
}}
name="Details"
component={Details}
/>
</Stack.Navigator>
</NavigationContainer>
</View>
);
};
export default App;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#ffffff',
paddingTop: Constants.statusBarHeight,
},
});