hnvn / flutter_image_cropper

A Flutter plugin for Android and iOS supports cropping images
1k stars 392 forks source link

BuildContext disposes on web with CropperPresentStyle.page #448

Open Geara0 opened 1 year ago

Geara0 commented 1 year ago

If I use this web settings

WebUiSettings(
    context: context,
    presentStyle: CropperPresentStyle.page,
)

context will be dismounted on cropper page pop, so later I can't do anything with crop result, which makes presentStyle option useless.

presentStyle.dialog in the same place of code works just fine.