-
Notifications
You must be signed in to change notification settings - Fork 0
/
Navigation.tsx
64 lines (61 loc) · 1.96 KB
/
Navigation.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
64
// import { NavigationContainer } from "@react-navigation/native";
// import { createStackNavigator } from "@react-navigation/stack";
// import { AskPayment } from "./features/payments/ask-payment";
// import PaymentNfc from "./features/payments/payment-nfc";
// export type RootStackParamList = {
// Home: undefined;
// AskPayment: undefined;
// PaymentNfc: { amount: number };
// };
// const Stack = createStackNavigator<RootStackParamList>();
// export function Navigation() {
// return (
// <NavigationContainer>
// <Stack.Navigator
// screenOptions={{
// headerShown: true,
// headerStyle: {
// backgroundColor: "black", //"#1D1D26",
// shadowColor: "transparent",
// borderBottomColor: "#333340",
// borderBottomWidth: 0,
// },
// headerTintColor: "#fff",
// headerTitleStyle: {
// fontSize: 24,
// },
// headerBackTitleVisible: true
// }}
// >
// <>
// <Stack.Screen
// name="AskPayment"
// component={AskPayment}
// options={{
// headerShown: false,
// title: "Pedir pago",
// headerStyle: {
// backgroundColor: "white", //"#1D1D26",
// shadowColor: "transparent",
// borderBottomColor: "#333340",
// borderBottomWidth: 0,
// },
// }}
// />
// <Stack.Screen
// name="PaymentNfc"
// component={PaymentNfc}
// options={{
// headerStyle: {
// backgroundColor: "#0C0C4C", //"#1D1D26",
// shadowColor: "transparent",
// borderBottomWidth: 0,
// },
// title: "Acerca el dispositivo",
// }}
// />
// </>
// </Stack.Navigator>
// </NavigationContainer>
// );
// }