Skip to content

jonmiles/react-native-viewpager

Repository files navigation

React Native View Pager

Reference project, demonstrate gesture based horizontal page scrolling in React Native using Animated.View and PanResponder.

Example View Pager

Requirements

  • Should render horizontally scrollable page content
  • Should snap content to centre
  • Should swipe to scroll previous / next

Design

<---------------------  No. Pages = pageData.length  -------------------------->


 <---- Page 1 ----->       Page 2       <----- Page 3 ----> <---- Page 4 ----->
                  +----------------------+
+-----------------+ +------------------- +-----------------+-------------------+
|                 |                    | |                                     |
|                 | |                  | |                 |                   |
|                 | |   Swipe Left /   | |                                     |
|                 | |      Right         |                 |                   |
|                 |      to Scroll     | |                                     |
|                 | | <-----    -----> | |                 |                   |
|                 | |                  | |                                     |
|                 | |                    |                 |                   |
|                 |                    | |                                     |
|                 | |                  | |                 |                   |
+-----------------+ +------------------+ +-------------------------------------+
                  |         .-.          |
                  |        (   )         |
                  |         `-'          |
                  +----------------------+


 |                  |                  |                   |
 |                  |                  |                   |
 |                  |                  |                   |
 v                  v                  v                   v

 i = 0              i = 1              i = 2               i = 3
 x = i * -width     x = i * -width     x = i * -width      x = i * -width

Usage

Super basic example...

const pageData = [{ text: "Hello" }, { text: "World" }];

const Page = page => (
  <View>
    <Text>{page.text}</Text>
  </View>
);

const App = () => (
  <View style={{ flex: 1 }}>
    <ViewPager renderPage={Page} pageData={data} />
  </View>
);

Running the Project

First, checkout the code

git clone https://github.com/jonmiles/react-native-viewpager.git

Install project dependencies

cd react-native-viewpager
yarn

Run the development server (watchman, packager and hmr)

yarn run start

Run app in ios simulator (requires xcode and os x)

yarn run ios

About

Reference project, demonstrate gesture based horizontal page scrolling in React Native using Animated.View and PanResponder.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published