Skip to content

Commit ce051f3

Browse files
committed
fix IOS leftTextColor
1 parent a49ab20 commit ce051f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/SkipButton.ios.js

+2-2
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)