react-native-pager-view
一个组件库,提供类似轮播图的视图,用于滑动浏览内容页面。
Android
iOS
Included in Expo Go
For the complete documentation index, see llms.txt. Use this file to discover all available pages.
重要
@expo/uiprovides a drop-in replacement forreact-native-pager-view, powered by Jetpack Compose on Android and SwiftUI on iOS.
react-native-pager-view 暴露了一个组件,提供用于在内容页面之间滚动的布局和手势,就像轮播图一样。
安装
Terminal
- npx expo install react-native-pager-viewIf you are installing this in an existing React Native app, make sure to install expo in your project. Then, follow the installation instructions provided in the library's README or documentation.
示例
App.js
import { StyleSheet, View, Text } from 'react-native'; import PagerView from 'react-native-pager-view'; export default function MyPager() { return ( <View style={styles.container}> <PagerView style={styles.container} initialPage={0}> <View style={styles.page} key="1"> <Text>第一页</Text> <Text>向右滑动 ➡️</Text> </View> <View style={styles.page} key="2"> <Text>第二页</Text> </View> <View style={styles.page} key="3"> <Text>第三页</Text> </View> </PagerView> </View> ); } const styles = StyleSheet.create({ container: { flex: 1, }, page: { justifyContent: 'center', alignItems: 'center', }, });
了解更多
访问官方文档
获取有关 API 及其用法的完整信息。