占位符文本输入不显示(反应本机)
placeholder textinput not displaying (react native)
我的文本输入中没有显示我的占位符,有人可以帮助我吗?
我正在使用本机反应
<TextInput
style={{
height: "15%",
margin: 12,
border: 1,
borderColor: "white",
borderStyle: "solid",
placeholder: "this is a test",
padding: 10,
borderRadius: 20,
width: "70%",
backgroundColor: "#E5E5E5"
}}
></TextInput>;
直接使用占位符属性,不通过css样式
查看 React Native 文档:
https://reactnative.dev/docs/textinput
我的文本输入中没有显示我的占位符,有人可以帮助我吗? 我正在使用本机反应
<TextInput
style={{
height: "15%",
margin: 12,
border: 1,
borderColor: "white",
borderStyle: "solid",
placeholder: "this is a test",
padding: 10,
borderRadius: 20,
width: "70%",
backgroundColor: "#E5E5E5"
}}
></TextInput>;
直接使用占位符属性,不通过css样式
查看 React Native 文档: https://reactnative.dev/docs/textinput