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

react-native-stylish

v0.5.0

Published

Easy to use declarative transitions and a standard set of animations for React Native

Downloads

5

Readme

react-native-stylish

Easy to use declarative transitions and a standard set of animations for React Native

Installation

Stylish $ npm install react-native-stylish --save

Usage

To animate things you must use the createStylishComponent composer similar to the Animated.createAnimatedComponent. The common components View, Text and Image are precomposed and exposed under the Stylish namespace. If you have your own component that you wish to animate, simply wrap it with a Stylish.View or compose it with:

import * as Stylish from 'react-native-stylish';
MyCustomComponent = Stylish.createStylishComponent(MyCustomComponent);

Declarative Usage

Generic transitions

You can create your own simple transitions of a style property of your own choosing. The following example will increase the font size by 5 for every tap – all animated, all declarative! If you don't supply a duration property, a spring animation will be used.

Note: If you are using colors, please use rgba() syntax.

Note: Transitions require StyleSheet.flatten available in React Native 0.15 or later. If you are running on anything lower, please polyfill as described under imperative usage.

<TouchableOpacity onPress={() => this.setState({fontSize: (this.state.fontSize || 10) + 5 })}>
  <Stylish.Text transition="fontSize" style={{fontSize: this.state.fontSize || 10}}>Size me up, Scotty</Stylish.Text>
</TouchableOpacity>

Properties

Note: Other properties will be passed down to underlying component.

| Prop | Description | Default | |---|---|---| |animationConfig|Name of the animation, see below for available animations. |None|

Imperative Usage

Predefined Animations

All animations are exposed as functions on Stylish elements, they take an optional duration argument. They return a promise that is resolved when animation completes successfully or is cancelled.

import * as Stylish from 'react-native-Stylish';

class ExampleView extends Component {
  render() {
    return (
      <TouchableWithoutFeedback onPress={() => this.refs.view.bounce(800).then((endState) => console.log(endState.finished ? 'bounce finished' : 'bounce cancelled');}>
        <Stylish.View ref="view">
          <Text>Bounce me!</Text>
        </Stylish.View>
      </TouchableWithoutFeedback>
    );
  }
}

To stop any ongoing animations, just invoke stopAnimation() on that element.

Generic transitions

animate(fromValues, toValues)

Will transition between given styles. If no duration or easing is passed a spring animation will be used.

animateTo(toValues[[, duration], easing])

This function will try to determine the current styles and pass it along to transition() as fromValues.

import * as Stylish from 'react-native-Stylish';

class ExampleView extends Component {
  render() {
    return (
      <TouchableWithoutFeedback onPress={() => this.refs.text.animateTo({opacity: 0.2});}>
        <Stylish.Text ref="text">Fade me!</Stylish.Text>
      </TouchableWithoutFeedback>
    );
  }
}

Demo / Example

See Example folder.

Stylish-demo

Changelog

License

MIT License. © Yuuki Arisawa 2016