We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a94363 + 07c7ac4 commit 9b42372Copy full SHA for 9b42372
1 file changed
src/components/InputText.js
@@ -14,7 +14,7 @@ export default function InputText(props) {
14
<View key={name}>
15
<Text style={styles.text}>{`${meta.label} ${isMandatory ? '*' : ''}`}</Text>
16
<TextInput
17
- style={{ ...style, ...styles.textBox(meta.multiline, meta.numberOfLines) }}
+ style={{ ...styles.textBox(meta.multiline, meta.numberOfLines), ...style }}
18
value={value || ''}
19
underlineColorAndroid="transparent"
20
onChangeText={onChangeInputValue}
0 commit comments