728x90
gesture-handler 설치할 때
link하면 오류가 났음.
맨 밑에 설정까지 해줬는데.
https://github.com/kmagiera/react-native-gesture-handler/issues/671
나와 같은 문제를 가진 사람이 있었다.
이걸 따라해보니 실행은 된다! 그러나 여전히
이 에러는 난다.
그래서 gesture-handler 를 unlink해줬더니
아무 에러도 안난다!!! 결론 : link는 하지 말고 공식 문서 맨 아래
Hybrid iOS Applications
부분과 react-native.config.js 파일을 추가하면 된다!!!
환경설정하는데만 3시간...! (사실 아주 간단한 문제였다 ㅜㅜ)
기분이 좋아졌다!!!
+ unlink하는걸로 안됨,,,, ios 에서 pod install도 해주기
https://github.com/kmagiera/react-native-gesture-handler/issues/494
그 외 에러 참고!
요약
// 공식문서 그대로!
yarn add react-navigation
yarn add react-native-gesture-handler
podfile에
pod 'React', :path => '../node_modules/react-native', :subspecs => [
. . . // other subspecs
'RCTLinkingIOS',
. . .
]
// 그리고 추가로 issue에서 얻은 것들
pod install (in ios folder)
https://philip1994.tistory.com/96
그리고 이 블로그를 따라해보니 네비게이션 성공!!!!! 오마이갓,,,,
import React, {Component} from 'react';
import {Text,View,TouchableOpacity} from 'react-native';
class Second extends Component {
render() {
const {navigation} = this.props;
return (
<View style={{flex:1,justifyContent: 'center'}} >
<TouchableOpacity
onPress={()=>{
navigation.goBack()
}}
>
<Text style={{alignItems: 'center'}}>Second Page</Text>
</TouchableOpacity>
</View>
);
}
}
export default Second;
no bundle url present
이러한 에러가 나서 clean project
https://www.npmjs.com/package/react-native-clean-project
설치하고 청소하면 됨!!
'Develop > React Native' 카테고리의 다른 글
Facebook도 쓰는 GraphQL 정복하기 (0) | 2019.12.04 |
---|---|
TDD 개발 방법론 (0) | 2019.09.14 |
[React/Inflearn] 리액트 처음이시라구요? React JS로 웹 서비스 만들기! (0) | 2019.06.24 |
[React Native/Inflearn] React Native로 ToDo 앱 만들기 (0) | 2019.06.24 |
[React/Inflearn] 생활코딩 React (0) | 2019.06.22 |