import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import PagerView from 'react-native-pager-view'; export default function PagerViewScreen() { return ( { console.log('New page!'); }}> First page Swipe this to scroll to the next page Second page Swipe this to scroll back ); } PagerViewScreen.navigationOptions = { title: 'PagerView Example', gesturesEnabled: false, }; const styles = StyleSheet.create({ container: { flex: 1, }, page: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, text: { fontSize: 20, fontWeight: 'bold', }, description: { fontSize: 16, color: '#888', }, });