RN的轮播图组件

自行安装

js 复制代码
yarn add react-native-swiper

示例代码

js 复制代码
import React, {useRef, useEffect} from 'react';
import {View, Text} from 'react-native';
import Swiper from 'react-native-swiper';

const MySwiper = () => {

  return (
    <Swiper autoplay={true}>
      {/* 设置 autoplay 为 false,关闭自动播放 */}
      <View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
        <Text>Slide 1</Text>
      </View>
      <View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
        <Text>Slide 2</Text>
      </View>
      <View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
        <Text>Slide 3</Text>
      </View>
    </Swiper>
  );
};

export default MySwiper;

效果图

相关推荐
用户21411832636029 分钟前
dify案例分享-国内首发!手把手教你用Dify调用Nano Banana2AI画图
前端
wa的一声哭了16 分钟前
Webase部署Webase-Web在合约IDE页面一直转圈
linux·运维·服务器·前端·python·区块链·ssh
han_21 分钟前
前端性能优化之CSS篇
前端·javascript·性能优化
k***858426 分钟前
【SpringBoot】【log】 自定义logback日志配置
android·前端·后端
小满zs29 分钟前
Next.js第十章(Proxy)
前端
d***9352 小时前
Webpack、Vite区别知多少?
前端·webpack·node.js
清风徐来QCQ2 小时前
javaScript(map,ref,?,forEach,watch)
java·前端·javascript
q***73552 小时前
windows配置永久路由
android·前端·后端
前端布鲁伊2 小时前
再来聊聊,Vue3 项目中 Pinia 的替代方案
前端·面试
柒昀3 小时前
Vue.js
前端·javascript·vue.js