Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can i put List into SharedPreferences in Flutter?

Can I put ArrayList or List object to SharedPreferences in Flutter? Cause I just realized that flutter haven't gson in their dart

So..i want to save like favorite books by tapping star icon, and when I tap that, that books will be saved in sharedPreferences.

and I can see the list of my favorite books.

like image 993
Arby Azra Avatar asked Sep 18 '25 07:09

Arby Azra


1 Answers

Save:

prefs.setStringList('key', yourList);

Retrieve:

var yourList = prefs.getStringList('key');
like image 90
CopsOnRoad Avatar answered Sep 20 '25 21:09

CopsOnRoad