From 4caa3cb4702b5c4863e17c86f3e32e6f09440230 Mon Sep 17 00:00:00 2001 From: enahum Date: Tue, 28 Nov 2017 11:37:47 -0300 Subject: [PATCH] Fix weird colors in radio buttons (#1214) --- app/components/radio_button/radio_button.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/radio_button/radio_button.js b/app/components/radio_button/radio_button.js index 255cef3eb..aeaf61ee5 100644 --- a/app/components/radio_button/radio_button.js +++ b/app/components/radio_button/radio_button.js @@ -26,8 +26,8 @@ class RadioButton extends PureComponent { constructor(props) { super(props); this.state = { - scaleValue: new Animated.Value(0.001), - opacityValue: new Animated.Value(0.1) + scaleValue: new Animated.Value(0), + opacityValue: new Animated.Value(0) }; this.responder = { @@ -134,7 +134,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { container: { flexDirection: 'row', alignItems: 'center', - backgroundColor: 'rgba(0,0,0,0)', + backgroundColor: theme.centerChannelBg, marginBottom: 15 }, ripple: {