У меня проблема со стилем заполнителя в TextInput. Я хочу иметь другой шрифт по умолчанию. Ниже я вставляю часть своего кода. Спасибо за помощь и ваше время :) 1001 *
Я пытаюсь добавить свойство placeholderStyle = {{fontFamily: "italic", borderColor: 'blue', paddingLeft: 200}}
<Animated.View style={{paddingTop: 300, opacity: this.state.inputsOpacity, width: '90%', position: "absolute"}}>
<TextInput
placeholderStyle={{ fontFamily: "italic", borderColor: 'blue', paddingLeft: 200 }}
placeholder="Enter your email!"
style={{
borderBottomWidth: 2,
borderBottomColor: "black",
textAlignVertical: "center",
paddingLeft: 10,
height: 50
}}></TextInput>
</Animated.View>