skip to Main Content

Firebase – How to update list with the result of a function in Flutter?

I'm a beginner in flutter. Here I want to create a ListView.builder ListView.builder( shrinkWrap: true, itemCount: filterMangaList.length, itemBuilder: (context, index) { return ListTile( title: Text(filterMangaList[index]['title']), ); }, ), where filterMangaList looks like this [[{total_chapter: 361, pic: https://images.pexels.com/photos/213780/pexels-photo-213780.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500, title: My Hero…

VIEW QUESTION
Back To Top
Search