我正在使用ImageSlider包来表示幻灯片中的图像,因此您可以滑动图像,但是由于某些原因它无法缩放。整个图像不能放在一张幻灯片上,因此您必须用手指移动才能看到整个图像。
这是我正在使用的代码:
<ImageSlider autoPlayWithInterval={5000} images={this.state.images}
customSlide={({ index, item, style, width }) => (
<Image source={{ uri: item }} style={{width: Dimensions.get('window').width}} />
)}
/>
我也尝试删除整个customSlide属性仍然是一个问题。
这是库:https://www.npmjs.com/package/react-native-image-slider
答案 0 :(得分:0)
这对我来说是固定的:
<ImageSlider autoPlayWithInterval={5000} images={this.state.images}
customSlide={({ index, item, style, width }) => (
<Image source={{ uri: item }} style={{
width: Dimensions.get('window').width,
resizeMode: 'contain',
backgroundColor: 'white'
}} />
)}
/>