1
I have a TextInput
that when it starts works normal, but after the user type something and delete, the placeholder breaks into two lines.
When starting the screen
After typing and deleting
<TextInput
editable
placeholder='FAÇA UMA BUSCA EM TODO SISTEMA'
placeholderTextColor={COLORS.DUSTY_GRAY}
ref={inputRef}
returnKeyType='search'
style={styles.input}
value={value}
/>
input: {
flex: 1,
fontSize: 14,
marginHorizontal: 10,
color: COLORS.DUSTY_GRAY,
},