From 53309079dd8a27fbebacdc8b8c28cbc382192300 Mon Sep 17 00:00:00 2001 From: syedmouaazfarrukh Date: Mon, 30 Jan 2023 08:51:04 -0800 Subject: [PATCH] Adding content to 109-storage --- .../109-storage/101-shared-preferences.md | 1 + .../flutter/content/109-storage/index.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/roadmaps/flutter/content/109-storage/101-shared-preferences.md b/src/roadmaps/flutter/content/109-storage/101-shared-preferences.md index 24ec50a0e..05bcd5699 100644 --- a/src/roadmaps/flutter/content/109-storage/101-shared-preferences.md +++ b/src/roadmaps/flutter/content/109-storage/101-shared-preferences.md @@ -5,3 +5,4 @@ In Flutter, SharedPreferences is a plugin allowing you to store data in key-valu Visit the following resources to learn more: - [shared_preferences - pub.dev package](https://pub.dev/packages/shared_preferences) +- [How do I access Shared Preferences?](https://docs.flutter.dev/get-started/flutter-for/android-devs#how-do-i-access-shared-preferences) \ No newline at end of file diff --git a/src/roadmaps/flutter/content/109-storage/index.md b/src/roadmaps/flutter/content/109-storage/index.md index 19c72df0c..b1ff6afd0 100644 --- a/src/roadmaps/flutter/content/109-storage/index.md +++ b/src/roadmaps/flutter/content/109-storage/index.md @@ -1 +1,15 @@ -# Storage \ No newline at end of file +# Storage + +Flutter provides several options for persistent storage, some of which are as follow: + +- SharedPreferences: A key-value store for small data. +- SQLite database: A relational database for structured data. +- File System: For storing large files and data. +- Firebase: A real-time database and backend as a service. + +All of these storage options are supported through third-party packages, which are easily integrated into a Flutter app. + +Visit the following links to learn more: + +- [Storage - Flutter Tutorial](https://www.youtube.com/watch?v=UpKrhZ0Hppks) +- [Cloud Storage in Flutter](https://firebase.flutter.dev/docs/storage/overview/) \ No newline at end of file