-
Notifications
You must be signed in to change notification settings - Fork 3k
Open
Description
Version
6.18.0
What platforms are you having the problem on?
Android
System Version
Pixel 7a SDK 35
On what device are you experiencing the issue?
Real device, Simulator
Architecture
New architecture with interop layer
What happened?
I recently upgraded from RN 0.78 to RN 0.82 and now I encountered the following issue:
Even when specifying both shutterColor="transparent" and hideShutterView={true}. There is still a black screen when the video first loads.
I also tried using viewType={ViewType.TEXTURE} but this seems to also not fix the issue.
Before the upgrade to RN 0.82 it still worked fine. I was using react-native-video 6.10.2 and upgraded to 6.18.0 now. But I do not think this is necessarly the issue since I also tried it using 6.10.2 with the commit #94967fc applied.
Bildschirmaufnahme.2025-11-26.um.10.33.21.mov
Reproduction Link
Reproduction
- create a new RN project with 0.82
- install the latest react-native-video
- include the following code:
<Video
shutterColor="transparent"
hideShutterView={true}
style={{
width: 200,
aspectRatio: 5 / 4,
}}
source={{
uri: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4',
}}></Video>
```
Metadata
Metadata
Assignees
Type
Projects
Status
To Triage