분류 전체보기183 [React] Typescript를 이용해 React 프로젝트 만들기 Typescript를 사용하는 React 프로젝트를 시작하려면 아래의 명령어를 입력해주시면 됩니다. npx create-react-app my-app --template typescript 기존에 create-react-app을 이용해서 일반적인 프로젝트 생성을 했는데, 뒤에 추가로 --template typescript를 붙여준 것이죠. 출처: https://create-react-app.dev/docs/getting-started Getting Started | Create React App Create React App is an officially supported way to create single-page React create-react-app.dev 2021. 6. 13. [Javascript] var보단 let을 쓰는 게 낫다..? 자바스크립트의 선언자는 var, let, const 이렇게 세 가지가 있습니다. 여기서 const는 한 번 할당하면 변하지 않는 값으로 주로 상수를 나타내거나 불변성을 유지하고 싶을 때 사용합니다. 즉 아래와 같은 상황이 되지 않는다는 것이죠. const a=1; a=2; // 2021. 6. 3. [React Native] borderStyle 적용되지 않는 경우 지난 번에 작업 중에 아래와 같은 레이아웃을 구현해야하는 경우가 있었습니다. 단순히 borderStyle을 dashed로 지정해주면 되는 문제였는데요, 적용이 되지 않았습니다. 문제를 찾아보니 borderRadius 값을 추가해주어야 borderStyle dotted 혹은 dashed가 지정된다고 합니다. 따라서 아래와 같이 구현을 할 수 있습니다. 이 때 borderRadius 값은 꼭 1이 아니고 다른 값이어도 됩니다. 참고 https://stackoverflow.com/questions/48258084/borderstyle-not-working-in-android-react-native/67277224#67277224 borderStyle not working in android - react-na.. 2021. 5. 26. [React Native] TextInput returnKeyType이 적용이 되지 않는 경우 얼마 전 프로젝트를 진행할 때 textInput에서 returnKeyType을 적용해야하는 경우가 있어 적용을 했습니다. returnKeyType은 키보드 우측 하단에 있는 버튼을 어떤 타입으로 할 건지를 결정하는 prop입니다. 아래 링크와 사진을 참고하시면 이해에 도움이 될 것입니다. https://reactnative.dev/docs/textinput#returnkeytype TextInput · React Native A foundational component for inputting text into the app via a keyboard. Props provide configurability for several features, such as auto-correction, auto-cap.. 2021. 5. 24. 이전 1 ··· 16 17 18 19 20 21 22 ··· 46 다음