I add picture of the dots that I want to change.
I'm using the react-native-swiper
Is there a way to change the style(color, size..) for dots in 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>;