1.0.7 • Published 5 years ago
rn-tony-animated-pressable v1.0.7
React Native Tony Animated Pressable
A custom React Native package with an aweful name which animates onPressIn and onPressOut of the React Native Pressable component.
Installation
Run
yarn add rn-tony-animated-pressableOr
npm install rn-tony-animated-pressableUsage
import RNTAnimatedPressable from 'rn-tony-animated-pressable'<RNTAnimatedPressable
scaleValue={0.9}
onPress={() => {
//do something
}}>
<Text>Press Me!</Text>
</RNTAnimatedPressable>Props
Inherits PressableProps
| Property | Type | Default value | Description |
|---|---|---|---|
| onPress | PressEvent | Called when the touch is released. | |
| scaleValue | Number | 0.9 | Specifies the value to which the animated view is scaled to. |
| friction | Number | 7 | Controls "bounciness"/overshoot of animated view. |
| tension | Number | 40 | Controls speed of the animation. |
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.