ReactNavigation5.x: навигация с помощью FlatList - PullRequest
0 голосов
/ 18 марта 2020

Как мне перейти к экрану с помощью 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: Не удается найти переменную: навигация»

...