react-native-jelly-button
v0.1.7
Published
a react native button with jelly effect
Downloads
7
Maintainers
Readme
react-native-jelly-button
a react native button with jelly effect
Installation
npm install react-native-jelly-button
Usage
import JellyButton from "react-native-jelly-button";
// ...
<JellyButton
height={50}
width={200}
gradientStart={'#219D72'}
gradientEnd={'#C3E87F'}
borderRadius={50}
>
<View>
<Text style={{ color: 'white', fontSize: 20 }}>{'Click me'}</Text>
</View>
</JellyButton>
Props
width: number; // button width
height: number; // button height
borderRadius?: number; //defualt 0 not all values are supported
animateGradient?: boolean; //defualt false
gradientStart: string; // color
gradientEnd: string; // color
gradientStartOpacity?: number; //defualt 1, a value from 0 to 1
gradientEndOpacity?: number; //defualt 1, a value from 0 to 1
onPress?: () => void;
gradientHorizontal?: boolean;//if the gradient horizontal or vertical default false(vertical)
Contributing
https://github.com/youssefali424/react-native-jelly-button
License
MIT