1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-07-31 22:40:19 +02:00

Merge pull request #5031 from theMuhammadKhalid/patch-1

Add react native storage copy
This commit is contained in:
dsh
2024-05-10 09:52:49 +01:00
committed by GitHub

View File

@@ -1 +1,10 @@
# Storage
React Native provides a few ways to persist data locally in the app. Here's a brief summary of the storage options available:
- Async Storage
- Expo Secure Store
- Expo File System
- Expo SQLite
Choose the storage option that best fits your app's requirements and use cases. Keep in mind that AsyncStorage and SecureStorage are more suited for small-scale data storage, while Realm and SQLite support more complex storage and querying needs.