Open In App

How to Setup SharedPreferences in Flutter?

Improve
Improve
Like Article
Like
Save
Share
Report

SharedPreferences is a package that enables the Application to store a small amount of data in your local storage. Like user name, id, etc. You don’t need other databases for it like SQLITE, FIREBASE, etc. So in this article, we will see How to install the Shared Preferences package in Dart/Flutter and How to use it in Flutter. Installation of packages in flutter is pretty easy. Just follow the steps below.

Step by Step Implementation

Step 1. Go to the pubspec.yaml file in your project.

Step 2. Now add your package under the dependencies section.

 

Note: Make sure you have provided the correct Indentation.

Step 3. Now In the Top right click on the get packages. This will add your package.

Step 4. Confirmation of Installation

 

If you get the exit code 0, that’s means you successfully added your package.

Step 5. Now finally import the package into your working file.

import ‘package:shared_preferences/shared_preferences.dart’;

Hope you successfully install the SharedPreferences Package in your flutter project.


Last Updated : 22 Mar, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads