navigation으로 넘겨줄 때,
array.map((item) => {
<Container
onPress={()=>
navigation.navigate('다음 페이지', {
id: item.id, name: item.name
})
}/>
})
파라미터로 받을 때,
import React from 'react'
const Component = ({route, navigation}) => {
const{id, name} = route.params
return <></>
}
export default Component
참고문서링크
https://reactnavigation.org/docs/params/
'react native' 카테고리의 다른 글
22.01.25 [android] 로컬 서버 접속 for 로컬 디바이스 기기 (0) | 2022.02.05 |
---|---|
22.01.25 [android] GC overhead limit exceeded (0) | 2022.01.25 |
22.01.17 firebase 설정 후 pod install 안되는 현상 해결 (0) | 2022.01.17 |
22.01.13 안드로이드 웹뷰 로드 시 흰 화면만 나오는 문제 (0) | 2022.01.13 |
22.01.10 Error: Objects are not valid as a React child (found: object with keys {_U, _V, _W, _X}). (0) | 2022.01.10 |