Skip to content

Commit

Permalink
Merge pull request #47 from el-lsan/bug/leftTextColor
Browse files Browse the repository at this point in the history
fix IOS leftTextColor
  • Loading branch information
FuYaoDe authored Nov 8, 2016
2 parents a49ab20 + ce051f3 commit c328e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/SkipButton.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {

export const SkipButton = ({
styles, onSkipBtnClick, isSkipBtnShow,
rightTextColor,
leftTextColor,
skipBtnLabel,
skipFadeOpacity
}) => {
Expand All @@ -26,7 +26,7 @@ export const SkipButton = ({
<TouchableOpacity
style={styles.full}
onPress={isSkipBtnShow ? () => onSkipBtnClick() : null}>
<Text style={[styles.controllText, { color: rightTextColor }]}>
<Text style={[styles.controllText, { color: leftTextColor }]}>
{skipBtnLabel}
</Text>
</TouchableOpacity>
Expand Down

0 comments on commit c328e98

Please sign in to comment.