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

transitionview

v1.1.5

Published

TransitionView is a drop-in replacement for the React Native View component. It serves the same purpose, except to animate it into the UI. It utilizes the Animatable library for animations and adds an index prop to control the sequence at which things loa

Downloads

6

Readme

TransitionView

TransitionView is a drop-in replacement for the React Native 'View' component. It serves the same purpose, except to animate it into the UI. It utilizes the Animatable library for animations and adds an index prop to control the sequence at which things load.

Installation

npm i transitionview

Usage

Include the components

import { TransitionView } from "transitionview";

Render Component

By default, TransitioView receives the following props as well as all the default props of a regular React Native View component.

<TransitionView
  index={0}
  animation="fadeIn"
  duration={500}
  delay={index ? (index * 500) / 5 : 0}
  useNativeDriver
>
  (...components to be rendered to UI)
</TransitionView>

The above chunk of code is the same as the one below.

<TransitionView>
  (...components to be rendered to UI)
</TransitionView>

To add sequence to components loading to the UI, use the 'delay' prop. So, the first component to load will be the default index={0}. Then, set the next component to load to index={1}, and the next to index={2}, and so on... If you are using '.map', set the index of the TransitionView to the index prop of the '.map' function and it will evenly increment your components as they load onto the UI.

data.map((item, index) => {
  return (
    <TransitionView
      index={index}
    >
    <Text>
      {item.text}
    <Text>
  )
})

To change the amount of the delay, change the number of miliseconds index is multiplied by (default is 500).

data.map((item, index) => {
  return (
    <TransitionView
      index={index}
      delay={index ? (index * 1500) / 5 : 0}
    >
      <Text>
        {item.text}
      <Text>
    </TransitionView>
  )
})

To change the animation, change the animation prop to the corresponding animation from react-native-animatable.

data.map((item, index) => {
  return (
    <TransitionView
      index={index}
      delay={index ? (index * 1500) / 5 : 0}
      animation={"bounceInDown}
    >
      <Text>
        {item.text}
      <Text>
    </TransitionView>
  )
})

To change the duration of the animation, change the duration prop to the desired amount of miliseconds for the animation to last.

data.map((item, index) => {
  return (
    <TransitionView
      index={index}
      delay={index ? (index * 1500) / 5 : 0}
      animation={"bounceInDown}
      duration={1500}
    >
      <Text>
        {item.text}
      <Text>
    </TransitionView>
  )
})

Misc. Notes

The 'useNativeDriver' prop is set, so if you don't want to use native drivers for your animations you can set this prop to false (useNativeDriver={false}).

Feel free to check out my work further at my portfolio & blog site - https://kevinmurphywebdev.com.