Im using react-native-vlc-media-player package, video is loading but autoplay, repeat props are not working though?

99 Views Asked by At

This video itself is working fine without any problems, but the repeat, autoplay, controls props are not working when added to the component, any idea how to solve this issue?

<VLCPlayer
              style={{
                width: Width,
                height: Ratio(200),
                flexDirection: 'column',
                alignItems: 'center',
                marginHorizontal: 20,
              }}
              source={{
                uri: !this.state.isPortrait
                  ? this.props.navigation.state.params.video
                  : this.state.videoPath,
              }}
              autoplay={true}
              paused={false}
  />

enter image description here

0

There are 0 best solutions below