|
@@ -56,6 +56,7 @@ export function Confirm({navigation}) {
|
56
|
56
|
Time:'',
|
57
|
57
|
i_token:'',
|
58
|
58
|
u_token:'',
|
|
59
|
+ Pin: {},
|
59
|
60
|
...docSnap.data()
|
60
|
61
|
};
|
61
|
62
|
});
|
|
@@ -109,6 +110,8 @@ export function Confirm({navigation}) {
|
109
|
110
|
const dimensions = Dimensions.get('window');
|
110
|
111
|
const screenWidth = dimensions.width;
|
111
|
112
|
|
|
113
|
+ const Pin = appointments[0];
|
|
114
|
+ console.log("PIN EN CONFIRM",Pin)
|
112
|
115
|
|
113
|
116
|
return (
|
114
|
117
|
<ImageBackground style={styles.stdcontainer} source={require('../../assets/yellow-white.jpg')}>
|
|
@@ -151,7 +154,7 @@ export function Confirm({navigation}) {
|
151
|
154
|
/>
|
152
|
155
|
<Button
|
153
|
156
|
title ='Ver mapa'
|
154
|
|
- onPress= {() => navigation.navigate('Map')}
|
|
157
|
+ onPress= {() => navigation.navigate('Map', {View_Only: true, Pin: Pin})}
|
155
|
158
|
/>
|
156
|
159
|
<FlatList style={{
|
157
|
160
|
flex: 1,
|