Skip to content

Commit 9b42372

Browse files
authored
Merge pull request #3 from CoffeeBeansLabs/bugfix/input-text-style
Fix: Input text box style
2 parents 1a94363 + 07c7ac4 commit 9b42372

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/InputText.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function InputText(props) {
1414
<View key={name}>
1515
<Text style={styles.text}>{`${meta.label} ${isMandatory ? '*' : ''}`}</Text>
1616
<TextInput
17-
style={{ ...style, ...styles.textBox(meta.multiline, meta.numberOfLines) }}
17+
style={{ ...styles.textBox(meta.multiline, meta.numberOfLines), ...style }}
1818
value={value || ''}
1919
underlineColorAndroid="transparent"
2020
onChangeText={onChangeInputValue}

0 commit comments

Comments
 (0)