We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In MDN, FileReader has a event called onLoad, but unfortunately in current main b55f343, there is no such event to listen to.
Current workaround would need to write a custom Extension Method, mimic the the onLoadEnd event which is currently inside main
onLoadEnd
extension on FileReader { Stream<ProgressEvent> get onLoad => EventStreamProviders.loadEvent.forTarget(this); }
The text was updated successfully, but these errors were encountered:
Thanks for filing! Feel free to add a PR adding what you wrote above to
web/web/lib/src/helpers/events/events.dart
Line 246 in af5de5e
Sorry, something went wrong.
No branches or pull requests
In MDN, FileReader has a event called onLoad, but unfortunately in current main b55f343, there is no such event to listen to.
Current workaround would need to write a custom Extension Method, mimic the the
onLoadEnd
event which is currently inside mainThe text was updated successfully, but these errors were encountered: