2016-11-07 75 views
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> 
+0

請發佈您已有的代碼。 –

+0

@MichaelRadionov將我的代碼添加到原始帖子 –

回答

0

該組件有一個名爲「點」的道具,你可以改變點的樣式。

<View style={{ 
     backgroundColor:'rgba(0,0,0,.2)', 
     width: 8, 
     height: 8,  
     borderRadius: 4, 
     marginLeft: 3, 
     marginRight: 3, 
     marginTop: 3, 
     marginBottom: 3,}} 
/> 
相關問題