Search code examples
dartfluttersharedpreferences

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.


Solution

  • Save:

    prefs.setStringList('key', yourList);
    

    Retrieve:

    var yourList = prefs.getStringList('key');