For everyone who has having black screen issues, I’ve found something that can be useful…
It seem that some of those black screen errors are related to how Flutter handles hybrid composition - For example, ZoomVideo SDK uses UiKitView to render the video on iOS and our app is applying rounded corners or any other transformation on Flutter side. This was causing a rendering error and leading to the black screen view.
After doing some tests I was able to get rid of those errors by removing everything that’s transforming the view. Even using a `Stack → Positioned` can cause this error.
@Emerson1 Thank you for sharing your findings on this. Engineering is still looking into this currently and I’ve shared this and your logs with them so that should give them more insight.
The black screen issue on iOS (and sometimes Android) occurs because of how Flutter’s hybrid composition interacts with Zoom’s UiKitView (on iOS) or PlatformView (on Android).
Zoom renders its video surface using a native platform view, and if Flutter applies any transformation (e.g., rounded corners, opacity, clipping, overlays, or using Stack + Positioned), the native view may fail to render properly — resulting in a blank / black screen.
Is there any update on the ‘flutter_zoom_videosdk’ package that was planned for release this month? Please let me know if there’s any new information from the development team.
From the beginning until now, I (and many other users) have repeatedly explained this problem after using the Flutter plugin. The issue exists in flutter_zoom_videosdk ^2.3.0 and in flutter_zoom_videosdk ^2.1.10.
To explain again clearly:
I tested both flutter_zoom_videosdk: ^2.1.10 and flutter_zoom_videosdk ^2.3.0.
After adding the plugin to my Flutter app and running pod install/update, it installs the native iOS dependency ZoomVideoSDK (2.3.0).
However, this version does not fix the black screen issue on iOS.
To resolve the black screen issue, the app requires ZoomVideoSDK (2.3.5) or higher.
As shown in the screenshot below, the issue has already been fixed by the iOS development team in ZoomVideoSDK 2.3.5+. However, the Flutter plugin has not yet been updated to include this newer native SDK version. The Flutter team’s code is still tied to ZoomVideoSDK 2.3.0, which is why the issue persists for Flutter users.