Jacse / react-native-app-intro-slider

Simple and configurable app introduction slider for react native
MIT License
1.65k stars 330 forks source link

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

Open hypesol opened 2 years ago

hypesol commented 2 years ago

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

shahid-nawaz-sl commented 2 years ago

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'
  },
hypesol commented 2 years ago

Thanks