Merge pull request #296 from ide/touchable-default

[Touchable] Change default `activeOpacity` to 0.2 to match iOS
This commit is contained in:
Spencer Ahrens 2015-03-31 22:55:15 -07:00
commit d679cb4986

View File

@ -59,7 +59,7 @@ var TouchableOpacity = React.createClass({
getDefaultProps: function() {
return {
activeOpacity: 0.5,
activeOpacity: 0.2,
};
},