Start a Project

How to use Shared Preferences to keep users logged in flutter?

In this blog, we will learn that How to use Shared Preferences to keep users logged in flutter?

Let’s imagine that if we are using an application after logging into the application.After using it sometimes, we quit or kill the app. Then ,when we open the app again and it asks to login again. Shit!!! It will be quite irritating to login again and again when we are opening the app.

People will avoid that application because of wastage of time on logging again and again.

Don’t worry ,.Here is the solution to this problem.And the solution is shared preference.

In this implementation, I am hoping that you have basic knowledge of shared preference.

You may also check our Flutter app development company page.

So, without wasting a single second, let’s start the stepwise code implementation to resolve this problem.

Step1:-Add the Dependency

Add the Shared Preference dependency in your pubspec.yaml file.

Step2:-Import the Package

After adding dependency, you can import the shared Preference package in your dart file.

Step3:-Save the credentials in Shared Preference.

When we login ,we will save our email in the shared preference and after login we will open the app again. We can check that credentials that we have saved are not empty.

In this example, we have two screens, i.e.Login screen and Home screen.If we have the email, then the app will go on the home screen, else it will go on the login screen.

Step4:-Add the Login and Home screen code

Let’s make the login screen and home screen.

On these screens, we have login and logout buttons respectively. At the click of Login button, user email will save in share preference.And on the click on logout, email will be removed from Shared Preference.

That’s it. It was all about code implementation.Now it’s time to check the output.

Step5:-Output

You can check the output in the below video.

https://mobikul.com/wp-content/uploads/2022/09/sharedPreference-3.mp4


You can see in the video that after logging in once, we are navigating on the home screen. We do not need to login again.

Congratulations!!!! You have learned how to use Shared Preferences to keep users logged in flutter?.

For more details and methods, you can refer to the official doc on flutter here.

For more interesting blogs check out here – https://mobikul.com/blog/

Hope this blog helps you with a better understanding in

Hope this blog helps you with a better understanding of how to use Shared Preferences to keep users logged in flutter?.

Thanks for reading 🙂

Exit mobile version