react-native-touchable-bounce

1.0.3 • Public • Published

react-native-touchable-bounce

React Native Touchable Bounce component.

Installation

$ npm install react-native-touchable-bounce --save

Usage

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>
    );
  }
});

Running example

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

Package Sidebar

Install

npm i react-native-touchable-bounce

Weekly Downloads

4

Version

1.0.3

License

BSD-3-Clause

Last publish

Collaborators

  • grabbou