I use React native.
I'd like to use Swiper from react-native-swiper.
import Swiper from "react-native-swiper";
Here as you can see, the button color is set blue as a default as well as size.
I use this Swiper as below.
<Swiper
style={{
width,
height: 400,
}}
buttonWrapperStyle={{
paddingHorizontal: 20,
}}
horizontal
showsButtons={true}
showsPagination={true}
}
>
{file.map((onepic) => (
<File
resizeMode="cover"
style={{ width, height: 400 }}
source={{ uri: onepic }}
></File>
))}
</Swiper>
Even if I've searched a lot how to change button color and size, but nothing was found.
please help me.

Yes you can, there is props called
buttonWrapperStylewhich is nothing but a style.You can even change style of specific left/right button by using
nextButtonorprevButtonpropsFind more in detail from here https://github.com/leecade/react-native-swiper#control-buttons