@@ -2,16 +2,22 @@ import { StyleSheet, View, Image, Text, FlatList, Pressable } from 'react-native
2
2
import React from 'react'
3
3
4
4
import '../data/nt_places.json' ;
5
+ import { useNavigation } from '@react-navigation/native' ;
5
6
6
- const ListViewComponent = ( { navigation } ) => {
7
+ const ListViewComponent = ( ) => {
7
8
8
9
const nationalTrustPlaces = require ( '../data/nt_places.json' ) ;
9
10
const placesArray = Object . values ( nationalTrustPlaces ) ;
10
11
12
+ const navigation = useNavigation ( ) ;
13
+
14
+ const changeScreenOnPress = ( item ) => {
15
+ navigation . push ( 'PlaceScreen' , { data : item . id } ) ;
16
+ }
11
17
12
18
const placesRenderItem = ( { item } ) => {
13
19
return (
14
- < Pressable key = { item } style = { styles . placeCard } >
20
+ < Pressable key = { item } style = { styles . placeCard } onPress = { ( ) => changeScreenOnPress ( item ) } >
15
21
< View style = { styles . placeImageContainer } >
16
22
< Image style = { styles . placeImage } source = { { uri : item . imageUrl } } />
17
23
</ View >
@@ -32,34 +38,35 @@ const ListViewComponent = ({ navigation }) => {
32
38
) ;
33
39
}
34
40
41
+
35
42
export default ListViewComponent
36
43
37
44
const styles = StyleSheet . create ( {
38
45
placeCard : {
39
46
width : '100%' ,
40
47
marginTop : 7 ,
41
- height : 300 ,
48
+ height : 275 ,
42
49
alignItems : 'center' ,
43
50
} ,
44
51
placeImageContainer : {
45
52
width : '95%' ,
46
- height : 235 ,
53
+ height : 200 ,
47
54
} ,
48
55
placeImage : {
49
56
width : '100%' ,
50
57
height : '100%' ,
51
- borderTopLeftRadius : 20 ,
52
- borderTopRightRadius : 20 ,
58
+ borderTopLeftRadius : 10 ,
59
+ borderTopRightRadius : 10 ,
53
60
} ,
54
61
placeTextContainer : {
55
62
width : '95%' ,
56
- height : 65 ,
63
+ height : 75 ,
57
64
marginHorizontal : 2 ,
58
65
paddingHorizontal : 10 ,
59
66
backgroundColor : 'white' ,
60
67
// transform: [{ translateY: -10 }],
61
- borderBottomLeftRadius : 20 ,
62
- borderBottomRightRadius : 20 ,
68
+ borderBottomLeftRadius : 10 ,
69
+ borderBottomRightRadius : 10 ,
63
70
justifyContent : 'center' ,
64
71
} ,
65
72
placeText : {
0 commit comments