-
Notifications
You must be signed in to change notification settings - Fork 421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
image_gallery_saver.dart may need to import 'dart:typed_data' #264
Comments
The import of 'dart:typed_data' is unnecessary because all of the used elements are also provided by the import of 'package:flutter/services.dart' |
Hi @woodwen , Thanks for your reply. I'm not sure about the latest version of Flutter, is it okay to directly import 'package:flutter/services.dart'? However, it doesn't work with my current Flutter version (v2.10.0). |
The current development version of image_gallery_saver uses flutter 3.10.5. Each subsequent flutter version upgrade will be marked in the readme. |
Hi @woodwen, I didn't find any specific Min Dart SDK requirements on pub.package, and I noticed that in the pubspec.yaml file, it's written as |
Hi @woodwen , i have the same issue here. I use 2.10.1 flutter version, and i can't build my app. I think @Howard2595 suggestion is good and reasonable. Hopefully you can consider it. Thank you |
We're waiting for the PR270 merger when that issue will be resolved |
When I run the project, the console throws an error like 'Error: Type 'Uint8List' not found.'.
I later found that the 'image_gallery_saver.dart' file did not include the 'dart:typed_data' import statement at the top.
Similar to the code below.
Hope you can consider.
The text was updated successfully, but these errors were encountered: