react-native-unique-id
react-native-unique-id copied to clipboard
AsyncStorage Warning
Warning generated by the AsyncStorage deprecation
Hello, I am creating the next issue to warn that in the new versions of RN, the library of AsyncStorage has been separated, which generates a Warning about the deprecation of AsyncStorage.
It is necessary to change following import
const AsyncStorage = require ('react-native'). AsyncStorage
By the following
import AsyncStorage from '@react-native-community/async-storage';
And add the following updated dependency provided by the React Native community.
"@react-native-community/async-storage": "^1.5.0"