hnvn / flutter_image_cropper

A Flutter plugin for Android and iOS supports cropping images
969 stars 375 forks source link

BuildContext disposes on web with CropperPresentStyle.page #448

Open Geara0 opened 7 months ago

Geara0 commented 7 months 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.