【发布时间】:2020-03-12 07:19:12
【问题描述】:
我添加了我想要更改的点的图片。
我正在使用react-native-swiper
有没有办法改变 swiper 中点的样式(颜色、大小..)?
<Swiper
style={styles.wrapper}
showsButtons={false}
onIndexChanged={this.onSwiperIndexChanged}
index={this.state.initialIndex} //{list.length - this.state.initialIndex - 1}
>
{list.map((item, index) => (
<InfoTable
key={index}
headerInfo={item}
approvers={approvers}
settings={settings}
/>
))}
</Swiper>;
【问题讨论】:
-
您将不得不深入研究该库的代码并进行相应的修改。
-
@TheRakeshPurohit Nop,他们提供了 API
标签: javascript css reactjs react-native react-native-swiper