0
我使用的是React Native Swiper組件:https://github.com/leecade/react-native-swiper#custom-basic-style--content如何更改React Native Swiper組件的默認顏色?
我無法將點顏色更改爲除默認藍色之外的任何其他顏色。有人知道怎麼做嗎?
這裏是我的代碼:
<Swiper style={styles.wrapper} loop={true}>
{rows.map(function(obj, index) {
return(
<View style={styles.main} key={index}>
<Image
source={{uri: obj.url}}
style={styles.main} />
</View>)
})}
</Swiper>
請發佈您已有的代碼。 –
@MichaelRadionov將我的代碼添加到原始帖子 –