A touchable bounce animation that can wrap any React Native view.
npm install react-native-bounceable
#### Installation
To install:
```
npm install --save react-native-bounceable
#### Props
- level: numberonPress: function
The maximum scale of the bounce animation (default: 1.1)
-
An optional function to be called after a press
js
import Bounceable from "react-native-bouceable";render() {
return onPress={()=>console.log("Pressed!")}
level={1.1}>
style={{
width: 100,
padding:8
}}>
Click Me!
}
``