전체 글

React Native/Error 모음

[React-Native] #Error #FontFamily 'Helvetica' is not a system font ...'

에러 내용fontFamily "Helvetica" is not a system font and has not been loaded through Font.loadAsync. - If you intended to use a system font, make sure you typed the name correctly and that it is supported by your device operating system.  - If this is a custom font, be sure to load it with Font.loadAsync. 해결 과정클론 코딩을 하는 과정에서 해당 에러를 마주했지만 너무 바쁘게 달리고 있던 한 주였기 때문에언제 누가 어떤 코드를 작성한 이후에 생긴 에러인지 찾기가 어려웠다.에..

React Native

[React-Native] React-Navigation 정리

** 아직 정리중인 게시글 공식문서 - 자주 쓰는 prop만 발췌 navigate - go to another screen, figures out the action it needs to take to do i goBack - close active screen and move back in the stack reset - wipe the navigator state and replace it with a new route setParams - make changes to route's params addListener - subscribe to updates to events from the navigators 공식문서 - 네비게이터 종류에 따른 종속 기능 (navigate, goBack의 대안) # ..

React Native

[React-Native] Status-Bar-Height Library

react-native-status-bar-height 라이브러리 설치 yarn add react-native-status-bar-height 디바이스마다 상이한 status-bar의 높이에 맞게 marginTop 값을 주어 Status-Bar에 가려지는 부분을 없앨 때 유용하게 사용할 수 있다! import import { getStatusBarHeight } from 'react-native-status-bar-height'; use marginTop: getStatusBarHeight()

React Native/Error 모음

[React-Native] #Error #createStackNavigator

원인createStackNavigator 를 import 할 때 중괄호를 제거했더니 발생한 에러해결방법// 에러 코드import createStackNavigator from '@react-navigation/stack';// 수정 코드import { createStackNavigator } from '@react-navigation/stack';

React Native

[React-Native] 기본 Library 설치

Navigation 관련 라이브러리 React-Navigation 기본 라이브러리 설치 yarn add @react-navigation/native 👇👇👇 React-Navigation 공식 문서 👇👇👇 React Navigation | React Navigation Routing and navigation for your React Native apps reactnavigation.org StackNavigation을 위한 React-Native 추가 라이브러리 설치 expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-c..

React Native

[React-Native] Expo 환경설정 (Window)

Node.js 설치 최신 버전이 아닌 12 버전으로 설치! -> 아직 최신 버전은 Expo에서 오류가 많다. NPM 설치 (LTS 버전 설치) Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 로컬 폴더 생성 및 VSCode 실행 - 터미널 실행 Yarn 설치 // 컴퓨터 전역적으로 yarn 설치 npm install -g yarn // yarn 설치 버전 확인 yarn -v Expo 명령어 도구 설치 // 컴퓨터 전역적으로 expo-cli 패키지 설치 npm install -g expo-cli Expo 가입 Expo — Sign up Create an account for Expo here..

[ Programming ]/Linux

FTP(File Transfer Protocol) 파일 전송 프로그램 FileZilla 설치하기

안녕하세요~ 델라입니다🖐 이번 게시글에서는 원격 서버와의 파일 전송을 위한 FileZilla 설치 방법을 알아보겠습니다. FTP는 TCP/IP 상의 컴퓨터들끼리 파일을 주고받을 때 쓰는 파일 전송 프로토콜이며, FileZilla는 Open Source 프로그램으로 FTP, SFTP, FTPS를 지원하는 FTP 관리 소프트웨어입니다. FileZilla 다운로드를 위해 아래 URL로 접속합니다. https://filezilla-project.org/download.php Download FileZilla Client for Windows (64bit) Download FileZilla Client for Windows (64bit) The latest stable version of FileZilla Cli..

[ Programming ]/Linux

PuTTY 설치하기

안녕하세요~ 델라입니다🖐 PuTTY는 원격 ssh client 중 하나로 대표적인 무료 원격 ssh 접속 프로그램입니다. PuTTY 외에도 다양한 무료 ssh client가 있습니다. 이번 게시글에서는 제가 가장 익숙한 PuTTY로 진행할 예정이며, 나중에 기회가 된다면 XShell이나 MobaXterm에 대한 글도 작성하겠습니다. PuTTY 다운로드를 위해 다음 URL에 접속합니다. https://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY: a free SSH and Telnet client PuTTY: a free SSH and Telnet client Home | FAQ | Feedback | Licence | Updates | Mirrors | Key..

Dellah
조각모음