Skip to content

gatinn/react-native-pulse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Native Pulse Animation

react native pulse

Installation

  npm install react-native-pulse --save

Usage

const Pulse = require('react-native-pulse');
  
class helloWorld extends Component {
  render() {
    return (
      <View style={styles.container}>
        <Pulse color='orange' numPulses={3} diameter={400} speed={20} duration={2000} />
      </View>
    );
  }  
}

Props

Component accepts several self-descriptive properties:

  • color (String) - Backgroundcolor for pulse. React-native colors supported. Default color is blue.
  • numPulses (Number) - This is the number of pulses that will be rendered. Defaults to 3.
  • diameter (Number) - This is the maximum diameter that a pulse will be. Defaults to 400.
  • style (object) - Style properties for pulse container positioning eg.
  • image (object) - Image for center pulse thumbnail.
  • speed (Number) - Speed in milliseconds pulse will redraw. Defaults to 10.
  • duration (Number) - Duration in milliseconds this is the delay new pulses will be created. Defaults to 1000.

About

React Native Pulse Animation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%