ReactNative

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..

Dellah
'ReactNative' 태그의 글 목록