advance_image_picker icon indicating copy to clipboard operation
advance_image_picker copied to clipboard

Black Screen Issue When Spam Finish ( Done ) Button

Open seceba opened this issue 2 years ago • 1 comments

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.

seceba avatar Feb 16 '23 22:02 seceba

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.

weta-vn avatar Jun 05 '23 15:06 weta-vn