@lisbakke/react-native-pulse
v1.0.10
Published
React Native Pulse Animation
Downloads
5
Maintainers
Readme
React Native Pulse Animation
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.