GithubHelp home page GithubHelp logo

alantoa / react-native-pager-view Goto Github PK

View Code? Open in Web Editor NEW

This project forked from callstack/react-native-pager-view

0.0 0.0 0.0 37.8 MB

React Native wrapper for the Android ViewPager and iOS UIPageViewController.

License: MIT License

Java 5.88% JavaScript 1.75% Objective-C 20.56% Ruby 0.85% C 0.06% TypeScript 58.31% Swift 0.04% Kotlin 12.55%

react-native-pager-view's Introduction

react-native-viewpager

CircleCI branch npm package Lean Core Extracted License

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.x 2.x 3.x
iOS support iOS support
Android support Android support AndroidX support

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 = new File(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:

import com.reactnativecommunity.viewpager.RNCViewPagerPackage;

Add the RNCViewPagerPackage class to your list of exported packages.

@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
    new MainReactPackage(),
    new RNCViewPagerPackage()
  );
}

Usage

import React from 'react';
import {StyleSheet, View, Text} from 'react-native';
import ViewPager from '@react-native-community/viewpager';

const MyPager = () => {
  return (
    <ViewPager style={styles.viewPager} initialPage={0}>
      <View key="1">
        <Text>First page</Text>
      </View>
      <View key="2">
        <Text>Second page</Text>
      </View>
    </ViewPager>
  );
};

const styles = StyleSheet.create({
  viewPager: {
    flex: 1,
  },
});

API

Prop Description Platform
initialPage Index of initial page that should be selected both
scrollEnabled: boolean Should viewpager scroll, when scroll enabled both
onPageScroll: (e: PageScrollEvent) => void Executed 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) => void Function called when the page scrolling state has changed both
onPageSelected: (e: PageSelectedEvent) => void This callback will be called once the ViewPager finishes navigating to the selected page both
pageMargin: number Blank space to be shown between pages both
keyboardDismissMode: ('none' / 'on-drag') Determines whether the keyboard gets dismissed in response to a drag both
orientation: Orientation Set horizontal or vertical scrolling orientation (it does not work dynamically) both
transitionStyle: TransitionStyle Use scroll or curl to change transition style (it does not work dynamically) iOS
showPageIndicator: boolean Shows the dots indicator at the bottom of the view iOS

Preview

Android

horizontal vertical
ViewPager ViewPager

iOS

horizontal - scroll horizontal - curl
ViewPager ViewPager
vertical - scroll vertical - curl
ViewPager ViewPager

react-native-pager-view's People

Contributors

ferrannp avatar trozee avatar thesavior avatar osdnk avatar danilobuerger avatar yungsters avatar nissy-dev avatar ptrocki avatar cpojer avatar sophiebits avatar ttsugriy avatar mikelambert avatar kmagiera avatar kkoudev avatar jbrown215 avatar jkeljo avatar foghina avatar mdvacca avatar davidaurelio avatar andreicoman11 avatar bolinfest avatar nicklockwood avatar nkhoshini avatar axe-fb avatar rickhanlonii avatar rubennorte avatar ruiaraujo avatar sebmarkbage avatar tobycox avatar bozdoz avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.