react-native-vlc-media-player
react-native-vlc-media-player copied to clipboard
How to display the slider in the VlCPlayerView?
Hi, I am using the library and I can't figure out how to add the slider on the VLCPlayerView...
This is my code
<VlCPlayerView
url={props.videoUri}
autoplay={true}
isGG={false}
showGG={false}
Orientation={Orientation}
autoAspectRatio={true}
resizeMode="cover"
repeat={true}
isFull={true}
seek={0}
realShowLoding={true}
showControls ={true}
showRightButton={false}
/>
);
This is how it shows
I want something to tell how much of that video I've seen but I can't figure out how to make the slider show. I see in the library code something with GG and I have no idea what it means. I am trying using isGG set to false but it isn't working
I think having the props explained for VLCPlayerView would help a ton.