Flutter- Image picker package: show images one after another with delete action

Question 1: You first need to store the images picked by using ImagePicker (or MultiImagePicker plugin) in a collection. Here’s an example on how to do that: List<File> images = List<File>(); images.add(await ImagePicker.pickImage(source: ImageSource.gallery, imageQuality: 20);); When you want to show those images on the screen, you can use several different widgets, like ListView, GridView, … Read more