Closed sheikhhaziq closed 1 year ago
I found out this error does not occur when you set hwAcc: HwAcc.disabled
can anybody help me?
I had same error when runinig the app on amazon firestick
I had the same error and fixed it by stopping the video before going back and making sure everything is disposed. My guess is that VLC on the Java side is trying to push frames on a platform view that no longer exist
I had the same error and fixed it by stopping the video before going back and making sure everything is disposed. My guess is that VLC on the Java side is trying to push frames on a platform view that no longer exist
In my case disposing video also crashes app
I had the same error and fixed it by stopping the video before going back and making sure everything is disposed. My guess is that VLC on the Java side is trying to push frames on a platform view that no longer exist
In my case disposing video also crashes app
Do you await for stop before disposing?
WillPopScope(
onWillPop: () async {
if (_videoPlayerController != null) {
await _videoPlayerController!.stop();
}
return true;
},
hey!, I am using flutter_vlc_player in my app. when i go back from the page with flutter_vlc_player, the app crashes with this error.