|
@@ -62,9 +62,11 @@ class VideoSwitch extends Component<Props> {
|
62
|
62
|
<View style = { styles.audioVideoSwitchContainer }>
|
63
|
63
|
<TouchableWithoutFeedback
|
64
|
64
|
onPress = { this._onStartAudioOnlyFalse }>
|
65
|
|
- <Text style = { textStyle }>
|
66
|
|
- { t('welcomepage.audioVideoSwitch.video') }
|
67
|
|
- </Text>
|
|
65
|
+ <View style = { styles.switchLabel }>
|
|
66
|
+ <Text style = { textStyle }>
|
|
67
|
+ { t('welcomepage.audioVideoSwitch.video') }
|
|
68
|
+ </Text>
|
|
69
|
+ </View>
|
68
|
70
|
</TouchableWithoutFeedback>
|
69
|
71
|
<Switch
|
70
|
72
|
onTintColor = { SWITCH_UNDER_COLOR }
|
|
@@ -74,9 +76,11 @@ class VideoSwitch extends Component<Props> {
|
74
|
76
|
value = { _settings.startAudioOnly } />
|
75
|
77
|
<TouchableWithoutFeedback
|
76
|
78
|
onPress = { this._onStartAudioOnlyTrue }>
|
77
|
|
- <Text style = { textStyle }>
|
78
|
|
- { t('welcomepage.audioVideoSwitch.audio') }
|
79
|
|
- </Text>
|
|
79
|
+ <View style = { styles.switchLabel }>
|
|
80
|
+ <Text style = { textStyle }>
|
|
81
|
+ { t('welcomepage.audioVideoSwitch.audio') }
|
|
82
|
+ </Text>
|
|
83
|
+ </View>
|
80
|
84
|
</TouchableWithoutFeedback>
|
81
|
85
|
</View>
|
82
|
86
|
);
|