我正在使用React Native Paper的TextInput组件。但是我在UI中得到了大纲,即使我放入了borderwidth:0
。
当我们输入时(数字键盘打开时),这不会出现
有人能告诉我怎么把这个拿掉吗?
render={({field: {onChange, onBlur, value}}) => (
<TextInput
keyboardType="decimal-pad"
autoFocus
//type= "outlined"
maxLength={10}
left={element}
placeholder="Phone Number"
style={{
width: s(250),
height: s(35),
borderRadius: s(20),
backgroundColor: theme.colors.white,
//borderWidth: 0,
}}
onBlur={onBlur}
theme={{
roundness: s(20),
}}
onChangeText={onChange}
value={value}
/>
)}
2条答案
按热度按时间jq6vz3qz1#
添加这些TextInput属性
活动下划线颜色=“白色”下划线颜色=“透明”
jgwigjjp2#
==〉你也需要加上这个。