我在React Native中使用TextInput,如果我嘗試向組件添加邊框,那麼在我的彩色邊框上總是有一個正方形的黑色邊框。React Native TextInput總是有黑色邊框
當我刪除我的彩色邊框組件看起來是這樣的:
這裏是我的代碼:
<TextInput
returnKeyType="search"
style={searchStyle.searchInput}
onChangeText={(text) => this.setState({text})}
placeholder={this.state.searchText}
onSubmitEditing={(event) => this.searchLocationSubmit(event)}
/>
const searchStyle = StyleSheet.create({
searchInput : {
height: 35,
color: '#64AFCB',
borderColor: '#64AFCB',
borderWidth: 1,
borderStyle: 'solid',
borderRadius: 15,
width: 200,
marginLeft: 10,
marginTop: 10,
backgroundColor: 'white',
position: 'absolute',
zIndex: 2
}
})