IOS
Which versions are you using:
Hi,
I want to use index
when 谋 use index, my swipper is deteriorates like a below image

onIndexChanged = (newIndex) => {
this.setState({
currency: this.state.itemsData[newIndex].symbol,
qrCode: this.state.itemsData[newIndex].wallet,
sliderIndex: newIndex
});
};
....
{this.state.sliderLoader ?
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<ActivityIndicator size={'large'} color={colors.primary}/>
</View>
:
<Swiper
showsButtons={false}
onIndexChanged={this.onIndexChanged}
loop={false}
index={this.state.sliderIndex}
paginationStyle={{
bottom: -25
}}
>
{this.renderControls()}
</Swiper>
}
This repo dead: https://github.com/leecade/react-native-swiper/issues/713
@cihanbas I have the same issue, did you find a solution?
Most helpful comment
@cihanbas I have the same issue, did you find a solution?