-
-
Notifications
You must be signed in to change notification settings - Fork 889
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
Video and audio not disposing properly #274
Comments
I ran into the same problem with you. Did you find any solution for this? |
@Sub6Resources I have the same problem, any solutions yet? |
I have a same issue. My <audio ...> is still running when I close Html Widget. please fix this. It has been in existence since June |
I have noticed this problem, and my solution is to override the default customRender: {
"video": (renderContext, child, attr, _) {
var videoUrl = attr['src'];
debugPrint('video: $videoUrl');
return VideoPlayerWrapper(
videoUrl: videoUrl,
);
},
} the |
great! but I was implement my Widget Audio to custom this, and add [audio, video] to black list. Thank you! |
Are you experiencing this issue on Android, iOS, or both? |
When leaving a page with video or audio, the media continues to play. Upon entering the page again, the media will play over the top of the existing media.
I haven't been able to find a way of disposing of the player, unless I have done it wrong.
The text was updated successfully, but these errors were encountered: