Fix weird colors in radio buttons (#1214)

This commit is contained in:
enahum 2017-11-28 11:37:47 -03:00 committed by Harrison Healey
parent c71b116c71
commit 4caa3cb470

View file

@ -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: {