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