Skip to content

Commit a033322

Browse files
authored
fix touchable highlight color on iOS (#624)
1 parent 8ca4041 commit a033322

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

views/components/touchable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const Touchable = ({
3030
default:
3131
case 'ios': {
3232
const Component = highlight ? TouchableHighlight : TouchableOpacity
33-
const innerProps = highlight ? {underlayColor: '#ebebeb'} : {activeOpacity: 0.65}
33+
const innerProps = highlight ? {underlayColor: '#d9d9d9'} : {activeOpacity: 0.65}
3434
return (
3535
<Component onPress={onPress} {...innerProps} {...props}>
3636
{content}

0 commit comments

Comments
 (0)