[Touchable] Change default activeOpacity to 0.2 to match iOS

Summary:
Closes https://github.com/facebook/react-native/pull/296
Github Author: James Ide <ide@jameside.com>

Test Plan: Imported from GitHub, without a `Test Plan:` line.
This commit is contained in:
James Ide
2015-03-31 21:25:51 -07:00
parent e8155c94dd
commit 6638713d3c

View File

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