rn: fix streaming key input color

This commit is contained in:
Bettenbuk Zoltan 2019-05-10 12:04:29 +02:00 committed by Saúl Ibarra Corretgé
parent a114d55fac
commit 1e346f10ab
2 changed files with 7 additions and 3 deletions

View File

@ -66,7 +66,10 @@ class StreamKeyForm extends AbstractStreamKeyForm<Props> {
onChangeText = { this._onInputChange } onChangeText = { this._onInputChange }
placeholder = { t('liveStreaming.enterStreamKey') } placeholder = { t('liveStreaming.enterStreamKey') }
placeholderTextColor = { PLACEHOLDER_COLOR } placeholderTextColor = { PLACEHOLDER_COLOR }
style = { styles.streamKeyInput } style = { [
_dialogStyles.text,
styles.streamKeyInput
] }
value = { this.props.value } /> value = { this.props.value } />
<View style = { styles.formFooter }> <View style = { styles.formFooter }>
{ {

View File

@ -90,9 +90,10 @@ export default createStyleSheet({
alignSelf: 'stretch', alignSelf: 'stretch',
borderColor: ColorPalette.lightGrey, borderColor: ColorPalette.lightGrey,
borderBottomWidth: 1, borderBottomWidth: 1,
color: ColorPalette.white, fontSize: 14,
height: 40, height: 40,
marginBottom: 5 marginBottom: 5,
textAlign: 'left'
}, },
/** /**