1.2.6 • Published 2 years ago

react-native-linear-gradient-button v1.2.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

React Native Linear Gradient Button

This package is built upon react-native-linear-gradient. So if any error occurs then make sure react-native-linear-gradient is installed properly.

  • Installing this package requires react-native-linear-gradient to be installed already.

  • For ios, don't forget to run pod install inside ios folder

  • Enter the param values and enjoy.

Example

//importing the GradientButton
import GradientButton from 'react-native-linear-gradient-button';

const App = () => {
  return (
      <GradientButton
        text={'Press Me'}
        onPress={() => console.log('Pressed')}
        color1="Black"
        color2={'white'}
        fontSize={15}
        fontFamily={'Roboto'}
      />
  );
};

Example Image