From 77fbf8a745b739cc2601bda747b0be2919eee212 Mon Sep 17 00:00:00 2001 From: Muhammad Khalid <52286894+theMuhammadKhalid@users.noreply.github.com> Date: Sun, 14 Jan 2024 23:04:12 +0500 Subject: [PATCH] Update 102-storage.md --- .../react-native/content/111-security/102-storage.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/roadmaps/react-native/content/111-security/102-storage.md b/src/data/roadmaps/react-native/content/111-security/102-storage.md index e0e8ac414..98d092bc6 100644 --- a/src/data/roadmaps/react-native/content/111-security/102-storage.md +++ b/src/data/roadmaps/react-native/content/111-security/102-storage.md @@ -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.