flutter-package / flutter_scan

scanner qrcode in widget tree & decoder qrcode from image
MIT License
80 stars 61 forks source link

MissingPluginException #60

Open LufeeWuKong opened 1 year ago

LufeeWuKong commented 1 year ago

final pickedFile = await ImagePicker().getImage(source: ImageSource.gallery); if (pickedFile != null) { final file = File(pickedFile.path); final sample = await ImageCrop.sampleImage( file: file, preferredSize: context.size?.longestSide.ceil(), ); String path = file.path; print("---------------_openImage() path: $path"); String? str = await Scan.parse(path); if (str != null) { print("---------------_openImage() str: $str"); } } MissingPluginException(No implementation found for method parse on channel chavesgu/scan)

brunodmn commented 1 year ago

same here...did you resolve this @LufeeWuKong ?

Star-Lord-76 commented 1 year ago

flutter clean and re run the project.