본문 바로가기

FE58

[ React-Native ] Navigation In a web browser, you can link to different pages using an anchor () tag. When the user clicks on a link, the URL is pushed to the browser history stack. When the user presses the back button, the browser pops the item from the top of the history stack, so the active page is now the previously visited page. React Native doesn't have a built-in idea of a global history stack like a web browser do.. 2019. 11. 6.
[ React-Native ] 라이브러리 정리 @ 궁금한 이유? > app 안에 있는 수많은 라이브러리 의 있는 이유를 알고 싶어서 List - react-native-appsflyer - react-native-global-props - react-native-keep-awake - react-native-secure-key-store - react-native-config - mobx @ 공부 1. react-native-appsflyer AppsFlyer SDK는 앱 설치 및 이벤트를 트래킹하는 기능을 제공합니다. 2. react-native-global-props import { setCustomView, setCustomTextInput, setCustomText, setCustomImage, setCustomTouchableOpacity .. 2019. 11. 5.
[ React-Native ] 오류,, 경우 @ 계속 발생하는 오류 해결 할 경우 정리 하기!! 1. 계속 react-navtive init 을 해서 npm run ios를 해도 문제 발생 error: bundling failed: Error: ENOENT: no such file or directory, uv_cwd > 해결 killall node 하게 되니까 node.js 에서 돌아가고 있던 전에 했던 server 가 계속 살아 남아 있는 경우가 많았습니다. 그래서 계속 서버가 겹치는 경우? 가 있어서 그런지 해결되었다. 그리고 rm -rf ios/build 를 지워주고 하는 것이 좋다. 그래야 npm run ios 할때 다시 빌드 파일을 생성해 주기 때문이다. 2019. 10. 29.
[ JS ] ES2015 @ 궁금한 이유 리액트든 노드든 뭘 JS 에 대한 강력한 이해가 필요하기 때문에 많이 알고 있다고 생각했지만, 순각적으로 막히는 경우가 많다는 것을 리액트 공부하면서 많이 느낀다. @ 공부 ## moder JavaScript In the old days, you could just include a tag in the header of your webpage, and your JavaScript would run as intended. These days, we preprocess our JavaScript in order to access experimental features and language extensions like JSX > 전에 사용한 JS는 나중에 돌아 가도록 했다면 이제는 전처리를 .. 2019. 10. 23.