From 9cd611a51f2914b0d082533c96c6bacecc0f1a0f Mon Sep 17 00:00:00 2001 From: Shrijal Shrestha <61979922+shrijalshr@users.noreply.github.com> Date: Mon, 5 Dec 2022 17:58:42 +0545 Subject: [PATCH] Add shared preferences package description (#3016) * Added SharedPreference description Added SharedPreference description from pub.dev * Update content/roadmaps/117-flutter/content/109-storage/101-shared-preferences.md Co-authored-by: Kamran Ahmed --- .../content/109-storage/101-shared-preferences.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/117-flutter/content/109-storage/101-shared-preferences.md b/content/roadmaps/117-flutter/content/109-storage/101-shared-preferences.md index 31ee54a19..5ef9b4903 100644 --- a/content/roadmaps/117-flutter/content/109-storage/101-shared-preferences.md +++ b/content/roadmaps/117-flutter/content/109-storage/101-shared-preferences.md @@ -1 +1,6 @@ -# Shared preferences \ No newline at end of file +# Shared Preferences + +In Flutter, SharedPreferences is a plugin allowing you to store data in key-value pairs persistently. It is similar to a local database or cache, but it is specifically designed to store small pieces of data, such as user preferences or settings. The SharedPreferences plugin is often used to store simple pieces of data that need to be accessed by multiple screens or widgets in an app. For example, you might use SharedPreferences to store the user's login status or the app's theme color. + +Free Content +shared_preferences - pub.dev package