react-native-app-intro-slider icon indicating copy to clipboard operation
react-native-app-intro-slider copied to clipboard

How to add Class or change CSS of Skip and Next Buttons

Open hypesol opened this issue 3 years ago • 2 comments

Hi

I want to change style on SKIP and NEXT links in the bottom and want to give my own styles like button. So how i can do this please guide me.

Thanks

hypesol avatar Feb 15 '22 07:02 hypesol

In react native

_renderNextButton = () => {
    return (
      <Text style={styles.buttonNext}>Next</Text>
    );
  };
  
  buttonNext: {
    bottom:53,
    height:56,
    minWidth:108,
    borderRadius:10,
    paddingHorizontal:20,
    paddingVertical:10,
    backgroundColor:'#fff',
    fontSize:24,
    lineHeight:35,
    fontFamily:'Inter-Bold',
    color:'#480CA8',
    textAlign:'center'
  },

shahid-nawaz-sl avatar Feb 22 '22 17:02 shahid-nawaz-sl

Thanks

hypesol avatar Feb 24 '22 11:02 hypesol