How to reset AsyncStorage in React Native

AsyncStorage is simple global storage for your react native app. It is a key value based storage you can use throughout the app. Sometimes you may need to reset or clear Asyncstorage. As the storage is unencrypted, it is not suitable for storing sensitive data.

In situations like logging out, clearing all data stored in AsyncStorage is essential. There is a method named clear which can be invoked on AsyncStorage so that all AsyncStorage data get erased.

You just need to use the following snippet to get it cleared.
AsyncStorage.clear();

For more details, you can refer to the official document here.
Have any doubts? Please let me know through the comment section given below.

Similar Posts

Leave a Reply