0.9.0 • Published 5 years ago

react-native-pages v0.9.0

Weekly downloads
3,217
License
BSD-3-Clause
Repository
github
Last release
5 years ago

react-native-pages

npm license travis codeclimate

Easy to use page view component for React Native

example

Features

  • Easy to use
  • Consistent look and feel on iOS and Android
  • Landscape and portrait orientation support
  • Parallax and complex animation support
  • Animated page indicator
  • Configurable scroll direction
  • Configurable page indicator position, color and opacity
  • RTL support
  • Pure javascript implementation

Installation

npm install --save react-native-pages

Usage

import React, { Component } from 'react';
import { Pages } from 'react-native-pages';

class Example extends Component {
  render() {
    return (
      <Pages>
        <View style={{ flex: 1, backgroundColor: 'red' }} />
        <View style={{ flex: 1, backgroundColor: 'green' }} />
        <View style={{ flex: 1, backgroundColor: 'blue' }} />
      </Pages>
    );
  }
}

Properties

namedescriptiontypedefault
horizontalScroll directionBooleantrue
rtlRTL mode for horizontal scrollBooleanfalse
startPageStart pageNumber0
indicatorColorPage indicator colorStringrgb(255, 255, 255)
indicatorOpacityPage indicator opacity (inactive dots)Number0.30
indicatorPositionPage indicator positionStringbottom
containerStyleStyle for container viewObject-
progressAnimated.Value updated with progressObject-
onScrollStartScroll start callbackFunction-
onScrollEndScroll end callbackFunction-
onHalfwayDominant page change callbackFunction-
renderPagerRender pager callbackFunction-

Possible values for indicatorPosition are none, top, right, bottom and left

Methods

namedescriptionreturns
scrollToPageScroll to page with optional animation-
isDraggingReturns whether the user has begun scrollingBoolean
isDeceleratingReturns whether content is moving after scrollingBoolean

Replacing page indicator

import { Indicator, Pages } from 'react-native-pages';

class Example extends Component {
  _renderPager = (options) => {
    let {
      rtl,
      pages,
      progress,
      horizontal,
      indicatorColor,
      indicatorOpacity,
      indicatorPosition,
    } = options;

    if ('none' === indicatorPosition) {
      return null;
    }

    return (
      <Indicator {...options} />
    );
  };

  render() {
    let { children, ...props } = this.props;

    return (
      <Pages {...props} renderPager={this._renderPager}>
        {children}
      </Pages>
    );
  }
}

For implementation details take look at Indicator component

Parallax and other animations

All child components receive the following props

namedescriptiontype
indexPage indexNumber
pagesPage countNumber
progressAnimated.Value with current progressObject

For usage example take look at example app source code

Example

git clone https://github.com/n4kz/react-native-pages
cd react-native-pages/example
npm install
npm run ios # or npm run android

Copyright and License

BSD License

Copyright 2017-2019 Alexander Nazarov. All rights reserved.

0.9.0

5 years ago

0.8.0

5 years ago

0.7.0

6 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.6

7 years ago

0.5.5

7 years ago

0.5.4

7 years ago

0.5.3

7 years ago

0.5.2

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago