Skip to content

Repository files navigation

react-native-viewpager

CircleCI branchnpm packageLean Core ExtractedLicense

This component allows the user to swipe left and right through pages of data. Under the hood it is using the native Android ViewPager and the iOS UIPageViewController implementations. See it in action!

ViewPager

Versions

1.x2.x3.x4.0.x, 4.1.x>= 4.2.x
iOS supportiOS supportiOS supportiOS support
Android supportAndroid supportAndroidX supportViewPager2 supportReverted to 3.3.0

Experimental version

ViewPager2 for Android uses another implementation than ViewPager1, hence it caused lots of issues. You can try experimental version using below command

yarn add @react-native-community/viewpager@next

Getting started

yarn add @react-native-community/viewpager

Linking

>= 0.60

Autolinking will just do the job.

< 0.60

Mostly automatic

react-native link @react-native-community/viewpager

Manual linking

Manually link the library on iOS

Follow the instructions in the React Native documentation to manually link the framework or link using Cocoapods by adding this to your Podfile:

pod'react-native-viewpager',:path=>'../node_modules/@react-native-community/viewpager'
Manually link the library on Android
Make the following changes:

android/settings.gradle

include ':@react-native-community_viewpager'
project(':@react-native-community_viewpager').projectDir =newFile(rootProject.projectDir, '../node_modules/@react-native-community/viewpager/android')

android/app/build.gradle

dependencies {
...
implementation project(':@react-native-community_viewpager')
}

android/app/src/main/.../MainApplication.java

On top, where imports are:

importcom.reactnativecommunity.viewpager.RNCViewPagerPackage;

Add the RNCViewPagerPackage class to your list of exported packages.

@OverrideprotectedList<ReactPackage> getPackages() {
returnArrays.<ReactPackage>asList(
newMainReactPackage(),
newRNCViewPagerPackage()
);
}

Usage

importReactfrom'react';import{StyleSheet,View,Text}from'react-native';importViewPagerfrom'@react-native-community/viewpager';constMyPager=()=>{return(<ViewPagerstyle={styles.viewPager}initialPage={0}><Viewkey="1"><Text>First page</Text></View><Viewkey="2"><Text>Second page</Text></View></ViewPager>);};conststyles=StyleSheet.create({viewPager: {flex: 1,},});

Attention: Note that you can only use View components as children of ViewPager (cf. folder /example) . For Android if View has own children, set prop collapsable to false https://reactnative.dev/docs/view#collapsable, otherwise react-native might remove those children views and and it's children will be rendered as separate pages

API

PropDescriptionPlatform
initialPageIndex of initial page that should be selectedboth
scrollEnabled: booleanShould viewpager scroll, when scroll enabledboth
onPageScroll: (e: PageScrollEvent) => voidExecuted when transitioning between pages (ether because the animation for the requested page has changed or when the user is swiping/dragging between pages)both
onPageScrollStateChanged: (e: PageScrollStateChangedEvent) => voidFunction called when the page scrolling state has changedboth
onPageSelected: (e: PageSelectedEvent) => voidThis callback will be called once the ViewPager finishes navigating to the selected pageboth
pageMargin: numberBlank space to be shown between pagesboth
keyboardDismissMode: ('none' / 'on-drag')Determines whether the keyboard gets dismissed in response to a dragboth
orientation: OrientationSet horizontal or vertical scrolling orientation (it does not work dynamically)both
transitionStyle: TransitionStyleUse scroll or curl to change transition style (it does not work dynamically)iOS
showPageIndicator: booleanShows the dots indicator at the bottom of the viewiOS
overScrollMode: OverScollModeUsed to override default value of overScroll mode. Can be auto, always or never. Defaults to autoAndroid

Preview

Android

horizontalvertical
ViewPagerViewPager

iOS

horizontal - scrollhorizontal - curl
ViewPagerViewPager
vertical - scrollvertical - curl
ViewPagerViewPager

About

React Native wrapper for the Android ViewPager and iOS UIPageViewController.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages