FuYaoDe / react-native-app-intro

react-native-app-intro is a react native component implementing a parallax effect welcome page using base on react-native-swiper , similar to the one found in Google's app like Sheet, Drive, Docs...
MIT License
3.24k stars 508 forks source link

Fixed wrong use of styles in DoneButton.js #103

Open SamiChab opened 6 years ago

SamiChab commented 6 years ago

By using the custom styles, I found an error: In file ./components/DoneButton.android.js (line 18), the nextButtonText style was used for the style of the text of the 'Done' button, instead of the controllText style.

<Text style={[styles.nextButtonText, { color: rightTextColor }]}>

has to be replaced with

<Text style={[styles.controllText, { color: rightTextColor }]}>