Reputation: 33
I have implement 2 component and the following is the component tree.
Mypurchase <--- ProductCard (parent) (child)
I need to navigate from productCard component button , to another screen, called 'complainytSubmission'
But it says navigation.navigate is not a function and, undefined is not a function how I solve it?
'Mypurchase' component:
i
mport * as React from 'react';
import {Dimensions, StyleSheet, View, FlatList, ScrollView, TouchableOpacity} from 'react-native';
import Icon from 'react-native-vector-icons/Ionicons';
import {Card, Button, Text} from 'react-native-paper';
import {useEffect, useState} from 'react';
import AsyncStorage from '@react-native-community/async-storage';
import ProductCard from './ProductCard';
import LinearGradient from "react-native-linear-gradient";
import {hostName} from '../../constants/constants';
const MypurchaseSceen = ({navigation}) => {
const [productDetails , setproductDetails] = useState([]);
console.log('productDetails Array',productDetails);
useEffect(() => {
getProductDetails();
}, []);
const getProductDetails = async () => {
const token = await AsyncStorage.getItem('userToken');
console.log('token from storage', token);
fetch(hostName +"/customer/get-all-products", {
method: "post",
headers: {
'Content-Type': 'application/json',
'Authentication': `Bearer ${token}`
},
})
.then((response) => response.json())
.then((json) => setproductDetails(json))
.catch((error) => console.error(error))
};
return (
<View>
<FlatList data={productDetails.data}
keyExtractor={( item ,index) => 'key' + index}
renderItem={({item}) => {
return (
<ProductCard item = {item}/>
)
}} />
</View>
);
};
export default MypurchaseSceen;
Productcard component:
import * as React from 'react';
import {Dimensions, StyleSheet, TouchableOpacity, View} from 'react-native';
import { Text} from 'react-native-paper';
import LinearGradient from "react-native-linear-gradient";
import ProductButton from './ProductButton';
const ProductCard = ({item} )=> {
return (
<View>
<View style={ styles.cardView}>
<Text style={styles.productName}> Product Name :{item.productName}</Text>
<Text style={styles.category}> Category :{item.category} </Text>
<ProductButton />
</View>
</View>
);
};
export default ProductCard;
Upvotes: 0
Views: 159
Reputation: 56
Inside your ProductButton, try to use the navigation hook
export function ProductButton(){
const navigation = useNavigation();
return(
<Button onClick={() => navigation.navigate('complainytSubmission')}
)
}
Upvotes: 1