How to get both image or video from gallery in flutter?
09:08 05 Oct 2019

I want to access the gallery and pick image or video on user choice.

I am building an app where user can upload image or video when they click on the gallery icon. I have used ImagePicker but with ImagePicker I will have to make two separate icon for photo and video. I just want one icon for accessing the gallery and to get video or photo in return.

IconButton(
  icon: Icon(FontAwesome5.getIconData('file-video')),
  iconSize: 52.0,
  onPressed: () => ImagePicker.pickVideo(source: ImageSource.gallery),
)
flutter dart