advance_image_picker
advance_image_picker copied to clipboard
Black Screen Issue When Spam Finish ( Done ) Button
If you keep pressing ( spamming finish button ) the finish button after selecting images, the app stays on the black screen.
This is because as you keep pressing finish it keeps running in the background and runs navigator.pop every time.
in image_picker.dart onPressed: (_selectedImages.isNotEmpty)
find this line and replace it with this one.
onPressed: (_selectedImages.isNotEmpty && _isOutputCreating == true)
and I found a temporary solution.
Thank you for sharing about problem. We apologize for the delay. We're so busy in some working projects for this month. After it finished, we'll investigate to resolve above problem.