Reputation: 1
I'm building a reminder app in React native with expo and I want to save the reminders in a database on the device. can I use expo go to test the app and still save the reminders on the device?
Upvotes: 0
Views: 1744
Reputation: 124
use react-native-async-storage for localstorage. this would help you set up: https://react-native-async-storage.github.io/async-storage/docs/install/ that way you can save data on your device locally.
Upvotes: 1