
React Native
React Native) Drawer Navigator 사용하기
좌측 또는 우측에 사이드바를 만들고 싶을 때 사용 라이브러리 설치 라이브러리 설치 명령어) yarn add @react-navigation/drawer react-native-gesture-handler react-native-reanimated * 이후 시뮬레이터 재실행 필요(yarn android / yarn ios) 만약, 시뮬레이터 재실행 중 오류가 난다면, yarn start --reset-cache 명령어로 캐시를 지우고 시뮬레이터를 재실행 해야함 이전에 사용한 navigation.push, navigation.pop 기능은 드로어 네비게이터에서 호환되지 않음 Drawer Navigator 사용하기 사용 예제 코드) import React from 'react'; import {Navigati..