더 많은 포스팅 보기 자세히보기

분류 전체보기 68

Invariant Violation: Tried to register two views with the same name RNCSafeAreaProvider 문제 해결

React Native개발을 하다가 한 이슈가 발생하였다. Invariant Violation: Tried to register two views with the same name RNCSafeAreaProvider 한참을 헤맸고, 깃허브에서 package.json "scripts": { "postinstall": "rm -rf node_modules/expo/node_modules/react-native-safe-area-context" } 이 스크립트를 추가하여 실행하면 문제를 해결할 수 있었다.

React Native Version Mismatch 문제 해결

React Native개발을 하다가 패키지를 업데이트 했는데, console.error: React Native version mismatch. JavaScript version: 0.62.2 Native version: 0.63.2 Make sure that you have rebuilt the native code. If the problem persists try clearing the Watchman and packager caches with `watchman watch-del-all && react-native start --reset-cache`. construct [native code]:0 _construct construct.js:19:9 Wrapper wrapNativeSuper.js..

TypeScript - Install

1. 설치방법 Node.js를 설치하면 npm도 같이 설치된다. $ npm install -g typescript 2. 사용방법 TypeScript의 기본 확장자는 .ts이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 // person.ts class Person { private name: string; constructor(name: string) { this.name = name; } sayHello() { return "Hello, " + this.name; } } const person = new Person('Lee'); console.log(person.sayHello()); tsc 명령어 뒤에 트랜스파일링 대상 파일명을 지정한다. 이때 확장자 .ts는 생략할 수..

C언어 번호표 발급과 호출 프로그램 구현

1. 프로젝트로 선정하게 된 이유 평소에 음식점이나 은행, 병원 등과 같은 곳에 갈 때마다 기다리는 사람이 많으면 대기 번호표를 뽑게 하여서 질서를 지키는 것이 생각나게 되었다. 이러한 시스템도 프로그래밍하여서 만들어졌겠다고 생각하였고, 어떻게 프로그래밍이 되었는지 궁금해지게 되었다. 그래서 ‘내가 직접 만들어 보면 어떨까?’라고 생각해보게 되었고 정말로 구현해보게 되었다. ​ 2. 프로젝트 제작 과정 처음에 어떤 식으로 프로그래밍을 할지 생각해보다가 구글링을 해보기로 하였다. 구글링을 통하여 자료구조 큐(Queue)에 대하여 알게 되었고 그것을 자세히 공부하게 되었다. 큐(Queue)에 대하여 공부하고 나서 그것을 이용하여 프로그래밍을 시작하게 되었다. 기본적인 기능을 다 만들고 보니 프로그램을 시작하..

T자형 개발 2020.05.13
반응형