flutter-package / images_picker

Flutter plugin for selecting images/videos from the Android and iOS gallery, and taking pictures/videos with the camera
MIT License
65 stars 85 forks source link

Not picture or video dialog shown - Android Bug #101

Open ArjunBhilare opened 1 year ago

ArjunBhilare commented 1 year ago

Environment

Technology Version
Flutter version 3.7.7
Plugin version images_picker: ^1.2.11
Android version 12
iOS version 15
Xcode version 14.3

Device information:

Description

Expected behavior:

When

await ImagesPicker.pick( count: 18, pickType: PickType.all, gif: false, maxTime: 7200, );

is called it should allow selected both photos and videos. It works fine on iOS.

Current behavior:

On Android: If user first selects photo, then he can only choose photos, if user selects video then he can only select videos. Both cannot be selected on Android. The same code works perfectly on iOS.

Steps to reproduce

await ImagesPicker.pick( count: 18, pickType: PickType.all, gif: false, maxTime: 7200, );

Use this to show the picker and try. Bug on Android only