//Here is my input text
<TextInput
style={styles.txtinp1}
placeholder="Password"
placeholderTextColor={"grey"}
/>
// here are my styles you just need to add color in styles
txtinp1: {
backgroundColor: "#000000",
height: "15%",
width: "90%",
marginBottom: 10,
borderRadius: 25,
paddingLeft: 20,
color: "grey",
},
5条答案
按热度按时间3pvhb19x1#
在
TextInput
样式中添加color: 'green';
将更改颜色在
native-base
中,您还需要注意主题化(参见文档)ukdjmx9f2#
只需为您的输入创建一个样式并将颜色设置为绿色
并将其分配给textInput
stszievb3#
如果要更改TextInput颜色,请在样式中添加颜色。
下面的示例将TextInput颜色给予为蓝色:
qyuhtwio4#
在尝试了许多不同的解决方案之后,我实现了一个自定义的TextInput组件,其中我放置了一个文本组件,它可以更改背景颜色,并在其上放置了一个具有透明字体颜色的TextInput。2我希望这个问题可以很快得到更好的解决。
luaexgnf5#