From fc8f2570f675183f66e13d3cb21a16248bf0e965 Mon Sep 17 00:00:00 2001 From: James Ide Date: Thu, 26 Mar 2015 19:47:51 -0700 Subject: [PATCH] [Touchable] Change default `activeOpacity` to 0.2 to match iOS --- Libraries/Components/Touchable/TouchableOpacity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Components/Touchable/TouchableOpacity.js b/Libraries/Components/Touchable/TouchableOpacity.js index ff1df3851..e590999de 100644 --- a/Libraries/Components/Touchable/TouchableOpacity.js +++ b/Libraries/Components/Touchable/TouchableOpacity.js @@ -59,7 +59,7 @@ var TouchableOpacity = React.createClass({ getDefaultProps: function() { return { - activeOpacity: 0.5, + activeOpacity: 0.2, }; },