TextInput的borderRadius属性在本机React中不起作用,

wqnecbli  于 2023-02-05  发布在  React
关注(0)|答案(5)|浏览(142)

我想在我的react-native应用程序中使用舍入的TextInput,但是当我设置它的borderRadius属性时,它不起作用。建议我这样做的方法。

<TextInput  placeholder="Email" style={styles.textInput} />

    textInput:{

    borderColor:'black',
    backgroundColor:'#D3D3D3',
    width:300,
    borderWidth: 1,
    borderStyle: 'solid',
    fontSize:15,
    borderRadius: 25,

    }
ki0zmccv

ki0zmccv1#

在具有borderRadius的TextInput上尝试overflow:"hidden"

ikfrs5lh

ikfrs5lh2#

TextInput的父项View上应用边框

<View style={styles.borderStyle}>
 <TextInput  placeholder="Email" style={styles.textInput} />
</View>
wa7juj8i

wa7juj8i3#

应用以下代码:

<TextInput
  style={{ height: 40, width: "95%", borderColor: 'gray', borderWidth: 2, borderRadius: 20,  marginBottom: 20, fontSize: 18 }}
  // Adding hint in TextInput using Placeholder option.
  placeholder=" Enter Your First Name"
  // Making the Under line Transparent.
  underlineColorAndroid="transparent"
/>
2ul0zpep

2ul0zpep4#

〈文本输入主题={{圆度:20 //试试这个}} /〉

zpjtge22

zpjtge225#

在react原生纸质文档的最新版本中,他们提到需要使用outlineStyle来设置边框颜色和边框半径

outlineStyle
Type: StyleProp<ViewStyle>
Pass style to override the default style of outlined wrapper. Overrides style when mode is set to outlined Example: borderRadius, borderColor

相关问题