fix: tampilan

Deskrispi:
- color input
- value length

No ISSues
This commit is contained in:
2025-07-02 16:49:34 +08:00
parent 32908e1362
commit b38d339a28
4 changed files with 11 additions and 9 deletions

View File

@@ -68,7 +68,7 @@ export function InputForm({ label, value, placeholder, onChange, info, disable,
value={value}
placeholder={placeholder}
keyboardType={type}
style={[Styles.inputRoundForm, error && { borderColor: "red" }, round && Styles.round30, { backgroundColor: bg && bg == 'white' ? 'white' : 'transparent' }]}
style={[Styles.inputRoundForm, error && { borderColor: "red" }, round && Styles.round30, { backgroundColor: bg && bg == 'white' ? 'white' : 'transparent' }, { color: 'black' }]}
onChangeText={onChange}
placeholderTextColor={'gray'}
/>