React-native——实现轮播图

大家好,我是贰妹子,希望我的博客对你有帮助(多动手练习一下呦)

将Swiper和Text通过一个View来封装.,要比自己画轮播图要方便许多,如果你需要自己写的轮播图,而不是第三方组件可以参照第二种方法

1⃣️、将Swiper和Text通过一个View来封装.、核心代码


                     index + ''}
                            index={1}
                            autoplayTimeout={3}
                            horizontal={true}
                            onMomentumScrollEnd={(e, state, context) => {
                            }}
                            dot={}
                            activeDot={}
                            paginationStyle={
  {
                                bottom: 10
                            }}>
                        
                            
             

你可能感兴趣的:(ReactNative)