здесь изображение заполнителя или ввода не видны в TextInput Я пробовал все, включая добавление высоты компонента TextInput, но ввод не виден, когда я запускаю expo в ios
это мой возврат InputComponent (
<Modal visible={props.visible} >
<View style={styles.inputView}>
<TextInput placeholder="Course Goal" style={styles.input}
onChangeText={(enteredGoal)=>(setGoalHandler(enteredGoal))}
value={enteredGoal}/>
<View style={styles.inputButtons}>
<View style={styles.button}><Button title="Cancel"
color="red" onPress={props.changeModal}/></View>
<View style={styles.button}><Button title="Add" onPress={()=>
{props.onAddGoal(enteredGoal),
setEnteredGoal('')}}/></View>
</View>
</View>
</Modal>
)
}