Skip to content

Commit c328e98

Browse files
authored
Merge pull request #47 from el-lsan/bug/leftTextColor
fix IOS leftTextColor
2 parents a49ab20 + ce051f3 commit c328e98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/SkipButton.ios.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88

99
export const SkipButton = ({
1010
styles, onSkipBtnClick, isSkipBtnShow,
11-
rightTextColor,
11+
leftTextColor,
1212
skipBtnLabel,
1313
skipFadeOpacity
1414
}) => {
@@ -26,7 +26,7 @@ export const SkipButton = ({
2626
<TouchableOpacity
2727
style={styles.full}
2828
onPress={isSkipBtnShow ? () => onSkipBtnClick() : null}>
29-
<Text style={[styles.controllText, { color: rightTextColor }]}>
29+
<Text style={[styles.controllText, { color: leftTextColor }]}>
3030
{skipBtnLabel}
3131
</Text>
3232
</TouchableOpacity>

0 commit comments

Comments
 (0)