2016-09-27 57 views
1

我想在我的react-native應用程序中使用舍入的TextInput,但是當我將其borderRadius屬性設置爲不起作用時。建議我這樣做。TextInput的borderRadius屬性在react-native中不起作用。

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

    textInput:{ 

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

    } 

回答

2

應用上View接壤,TextInput

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

我做到了。但爲什麼textInput中的borderRadius屬性不起作用,雖然它在react-native中的按鈕上工作? @Shukarullah Shahh –

0

父母在具有borderRadius將TextInput嘗試overflow:"hidden"