1.2.4 • Published 3 years ago

react-native-onboarding-animate v1.2.4

Weekly downloads
11
License
MIT
Repository
github
Last release
3 years ago

React Native Onboarding Animate

React native component for onboarding processes with animation

Demo

Onboarding Animation Expo's snack

Install

Install react-native-onboarding-animate package and save into package.json:

$ npm install react-native-onboarding-animate --save

How to use?

import React, { Component } from 'react';

import OnboardingAnimate from 'react-native-onboarding-animate';
import {
  FirstScene,
  SecondScene,
  ThirdScene
} from './ExampleScenes';

export default class App extends Component {
  
  render() {

    // Define scenes, it will be displayed in order
    let scenes = [
      {
        component: FirstScene,
        backgroundColor: 'yellow'
      }, {
        component: SecondScene,
        backgroundColor: 'orange'
      }, {
        component: ThirdScene,
        backgroundColor: 'red'
      }
    ];

    return <OnboardingAnimate
        scenes={scenes}
        enableBackgroundColorTransition={true}
    />;
  }
}

animatedValue

Each of scence will be injected in this.props with an animatedValue with inputRange = [0, windowWidth]. This can be used for any animation within the scence by using interpolate. For example:

    var animateValue = this.props.animatedValue.interpolate({
        inputRange: [0, windowWidth],
        outputRange: [0, 10]
    })

(Please see actual code in the Expo example, file ./ExampleScenes/FirstScene.js line 19 )

Properties

NameTypeDefault ValueDefinition
scenesarray of object { component: (required), backgroundColor: (optional) }-component: the view that will be displayed, backgroundColor: color of the view's background that will be animated
enableBackgroundColorTransitionbooleanundefinedSet to true to animate background color when transitining view/component
activeColorstring (hex, rgba, etc.)rgba(32, 119, 336, 1)color of active indicator, Continue button background color
inactiveColorstring (hex, rgba, etc.)rgba(0, 0, 0, 0.2)color of inactive indicator

Property injected in each scence props

NameTypeDefault ValueDefinition
animatedValueinterpolate value of Animated.ValueinputRange: 0, windowWidthan animated value, use for animation within a page by using this.props.animatedValue.interpolate

Transpile

Run the below command to transpile typescript to javascript

$ tsc

// yarn or npm
$ yarn build
$ npm run build

Todo

  • Test on android
  • Create tests
1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.0

3 years ago

1.2.1

3 years ago

1.1.0

5 years ago

1.0.0

5 years ago

0.10.0

6 years ago

0.9.0

6 years ago

0.8.0

6 years ago

0.7.0

6 years ago

0.6.0

6 years ago

0.5.0

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago

0.0.1

6 years ago