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 change buttonText color? #245

Closed govarthananve closed 3 years ago

govarthananve commented 3 years ago

Any option to change the skip button color

govarthananve commented 3 years ago
<AppIntroSlider
            keyExtractor={this._keyExtractor}
            showSkipButton={true}
            renderSkipButton={this._renderSkipButton}
....
/>
_renderSkipButton = () => {
    let ThemeStyle = Theme.getStyles(ThemeStyles);
    return (
      <View style={width: 60,
    height: 44,
    justifyContent: 'center',
    alignItems: 'center',}>
        <Text style={color:"red"}>Skip</Text>
      </View>
    );
  };

That is it I am able to change the button color