Answers for "async storage for react-native"

1

asyncstorage react native

yarn add @react-native-async-storage/async-storage // install by yarn
npm i @react-native-async-storage/async-storage // install by npm

// import
import AsyncStorage from '@react-native-async-storage/async-storage';


await AsyncStorage.setItem('@storage_Key', "value") // for store item
await AsyncStorage.removeItem('@storage_Key', "value") // for remove item
Posted by: Guest on April-20-2022
0

npm react-native-async-storage

npm install @react-native-async-storage/async-storage
Posted by: Guest on February-01-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language