프로그래밍/React

React native AsyncStorage 라이브러리 설치

이재만박사 2024. 6. 29. 17:23

npm i @react-native-async-storage/async-storage

 

보안이 필요한 데이터는 EncryptedStorage에 저장

 

npm i @react-native-encrypted-storage/storage;

 

import EncryptedStorage from 'react-native-encrypted-storage';

 

await EncryptedStorage.setItem('키', '값');