npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

multistep-forms-2

v1.0.0

Published

this a cool animated package for handle multi step screens of react native

Downloads

3

Readme

React Native Animated Multistep

installation

You can install this package with the following command:

yarn add react-native-multistep-forms

or

npm install react-native-multistep-forms

How to use

In the top level component add

import AnimatedFormView from 'react-native-multistep-forms'
import StepOne from './StepOne'
import StepTwo from './StepTwo'
import StepThree from './StepThree'

/* Define the steps  */

import Step1 from "./steps/step1";
import Step2 from "./steps/step2";
import Step3 from "./steps/step3";
import Step4 from "./steps/step4";

const allSteps = [
  { name: "step 1", component: Step1 },
  { name: "step 2", component: Step2 },
  { name: "step 3", component: Step3 },
  { name: "step 4", component: Step4 }
];

/* Define your class */
export default class App extends Component {

/* define the method to be called when you go on next step */

  onNext = () => {
    console.log("Next");
  };

  /* define the method to be called when you go on back step */

  onBack = () => {
    console.log("Back");
  };

/* define the method to be called when the wizard is finished */

  finish = finalState => {
    console.log(finalState);
  };

/* render MultiStep */
  render() {
    return (
      <View style={{ flex: 1 }}>
        <AnimatedFormView
          steps={allSteps}
          onFinish={this.finish}
          onBack={this.onBack}
          onNext={this.onNext}
          comeInOnNext="bounceInUp"
          OutOnNext="bounceOutDown"
          comeInOnBack="bounceInDown"
          OutOnBack="bounceOutUp"
        />
      </View>
    );
}
}

In the step

import React, { Component } from "react";
import { Text, View, TouchableOpacity } from "react-native";

import styles from "./styles";

class step1 extends Component {
  constructor(props) {
    super(props);
    this.state = {};
  }

  nextStep = () => {
    const { next, saveState } = this.props;
    // Save state for use in other steps
    saveState({ name: "samad" });

    // Go to next step
    next();
  };

  goBack() {
    const { back } = this.props;
    // Go to previous step
    back();
  }

  render() {
    return (
      <View style={[styles.container, styles.step1]}>
        <Text> Step 1 </Text>
        <View style={styles.btnContainer}>
          <TouchableOpacity onPress={this.nextStep}>
            <Text>Next</Text>
          </TouchableOpacity>
        </View>
      </View>
    );
  }
}

export default step1;

API

this.props.saveState({ key: value, key2: value2})

Use this to save state

this.props.getState()

Use this to get all the values saved with saveState so far. Retuns an object

this.props.next()

Use this to go to next step in the app.

this.props.back()

Use this to go to previos step in the app.

Props

| Props | Type | Notes | Required | | -------- | ---------- | --------------------------------------------------------- | -------- | | steps | Array | array containing steps | ✔️ | | onFinish | function | a function, which will run when all steps are finish | ❌ | | onNext | function | a function, which will run when you go on next step | ❌ | | onBack | function | a function, which will run when you go on back step | ❌ | | comeInOnNext | String | define you animation type when the component comes in on next, default is bounceInLeft | ❌ | | OutOnNext | String | define you animation type when the component goes out on next, default is bounceOutRight | ❌ | | comeInOnBack | String | define you animation type when the component comes in on back, default is bounceInRight | ❌ | | OutOnBack | String | define you animation type when the component goes out on next, default is bounceOutLeft | ❌ |

Note:

you can more animation and set-up animations by your self on react-native-animatable

Methods

| Method Name | Arguments | Notes | | ------------- | --------- | ------------------------------------------------------------------ | | next() | none | use this method to jump on next step | | back() | none | use this method to go back on previos step | | saveState() | Object | use this method to save your state, in order to get in other steps | | getState() | none | use this method to get you saved state by saveState() method |