I'm using react-native-video and I am trying to figure out how to hide only the two buttons (caption and bar graph thing) in the image below. I still want the scrubbar and time. Passing controls=false hides everything which I dont want.
This is my current player component setup
<Video
onPlaybackRateChange={onPlaybackRateChange}
source={{ uri }}
resizeMode="contain"
useNativeDriver={true}
style={styles.video}
disableTimer={true}
controls={true}
/>
I think you should hide controls with controls={true}
prop and use other packages for movie control like react-native-video-controls or react-native-video-player as mentioned in documentation