-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
50 lines (46 loc) · 1.19 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
import React, { useRef } from "react";
// import "react-native-gesture-handler";
import { NavigationContainer } from "@react-navigation/native";
import {
createStackNavigator,
TransitionPresets,
} from "@react-navigation/stack";
import WebviewContainer from "./src/components/WebViewContainer";
const Stack = createStackNavigator();
function App(): JSX.Element {
return (
<NavigationContainer>
<Stack.Navigator
initialRouteName="Home"
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="Home"
component={WebviewContainer}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
export default App;