I want to persist my app data using zustand but in react native, but unable to use asyncstorage due to storage limitation 5 MB what other option do I have.
I tried to store huge amount of data using Zustand in AsyncStorage, Due to storage limitation unable to do it
Instead of AsyncStorage, you can use the React Native File System (react-native-fs) to store data in files on the device. This can be useful for large datasets.