我使用React native。我想使用react-native-swiper
的Swiper。
从react-native-swiper导入Swiper;
在这里,您可以看到,按钮颜色设置为blue
作为默认值以及size
。
我使用这个Swiper
如下。
<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>
即使我已经搜索了很多如何改变按钮的颜色和大小,但没有找到。
请帮帮我。
2条答案
按热度按时间wbgh16ku1#
是的,你可以,有一个叫做
buttonWrapperStyle
的 prop ,它只不过是一种风格。您甚至可以使用
nextButton
或prevButton
prop 更改特定左/右按钮的样式更多详情请访问https://github.com/leecade/react-native-swiper#control-buttons
iqih9akk2#
你只要加上