react-native-vlc-media-player icon indicating copy to clipboard operation
react-native-vlc-media-player copied to clipboard

How to display the slider in the VlCPlayerView?

Open mvortizr opened this issue 1 year ago • 1 comments

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 image

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 image

I think having the props explained for VLCPlayerView would help a ton.

mvortizr avatar Jul 26 '23 23:07 mvortizr