React Native Touchable Bounce component.
$ npm install react-native-touchable-bounce --save
Simply require('react-native-touchable-bounce')
and use just like any other Touchable*
component.
var React = require('react-native');
var { Text, View } = React;
var TouchableBounce = require('react-native-touchable-bounce');
var Example = React.createClass({
render() {
return (
<View>
<TouchableBounce onPress={() => console.log('pressed')}>
<Text>Click me</Text>
</TouchableBounce>
</View>
);
}
});
Start the packager by doing:
$ cd ./example && npm start
This step is required to run packager so that it will look into src folder for our TouchableBounce component