Как мне перейти к экрану с помощью Flatlist?
class FlatlistItem extends Component() {
constructor(props) {
super(props)
}
render() {
return (<TouchableOpacity onPress={()=>navigation.navigate(this.props.item.screen)}>
<Image source={{ uri: this.props.item.image }}></Image>
<TouchableOpacity> )}
export default function Services({ navigation }) {
return (
<View>
<FlatList data={flatListdata}
renderItem={({ item, index }) => {
return (
<FlatlistItem item={item} index={index}></FlatlistItem>
)
}}></FlatList>
</View>
)
}
Мой симулятор сказал: «Необработанный JS Исключение: ReferenceError: Не удается найти переменную: навигация»