Closed CodeBunny786 closed 4 years ago
You can change this by supplying your own renderNextButton
and renderSkipButton
-functions
@CodeBunny786 you can change color by using renderFunction here is the example.
`const _renderNextButton = () => { return (
);
};
const _renderDoneButton = () => { return (
);
};
const _renderSkipButton = () => { return (
);
};
const _renderPrevButton = () => { return (
);
};`
<AppIntroSlider renderItem={_renderItem} showSkipButton showPrevButton data={slides} onDone={() => { props.navigation.navigate(Routes.LOGIN_SCREEN); }} dotStyle={{backgroundColor: Colors.backGroundColor}} activeDotStyle={{backgroundColor: Colors.mergenda}} renderNextButton={_renderNextButton} renderDoneButton={_renderDoneButton} renderSkipButton={_renderSkipButton} renderPrevButton={_renderPrevButton} />
HI there every one
can any one tell how change next previous done button color
Thanks in advance