Problem while moving the slide
Please fix it, when I slide from the last slide to the first the position still leads to the last one. After the last slide time has run out, the new slide will move to the first slide. please fix it so that the slide follows after sliding and slide a little lag. mantep mas, lanjutkan!
set ScrollView pagingEnabled={true} in file Slideshow.js.
add this code for change indicator in file Slideshow.js in ScrollView after add pagingEnabled={true}
onMomentumScrollEnd={(e) =>{ var offset = e.nativeEvent.contentOffset; if(offset) { const WIDTH = Dimensions.get('window').width; var page = Math.round(offset.x / WIDTH); if(this.state.position != page) { this.setState({position: page}); } } }}