sync-storage
sync-storage copied to clipboard
NativeModule:AsyncStorage is null
I got the same problem on expo. The current version of sync-storage relies on '@react-native-community/async-storage', but '@react-native-community/async-storage' is not supported there!
Same problem :(
react-native link @react-native-community/async-storage :+1:
Same problem here . any update ?
Hey guys, I am looking for someone to have a look on this issue. Today I don't have a quality time to maintain this repository, so any help will be appreciated. :)
anyone can help ?
async componentWillMount(){ const data = await SyncStorage.init(); console.log('AsyncStorage is ready!', data); }
Hi ! Today i was discover sync storage and I got this error, the solution is replace "import AsyncStorage from "@react-native-community/async-storage" by "import AsyncStorage from "@react-native-async-storage/async-storage" (dont forget to download react-native-async-storage/async-storage and init SyncStorage in componentDidMount)