I use texfield to add number. After this I save in sharepreference the value in List
I search to make an addition of each value saved in this List
I tried this, but it doesn't works.
load_list()async{
SharedPreferences prefs = await SharedPreferences.getInstance();
setState(() {
stringList = prefs.getStringList("list");
sum = stringList.reduce((value, element) => value + element);
});
}