react-native-material-dropdown
react-native-material-dropdown copied to clipboard
Double border when disabled={true}
<Dropdown
disabled={!auto_invoicing}
label=" "
fontSize={17}
textColor={'rgb(102, 120, 144)'}
value={issueInvoices[issue_invoices].value}
onChangeText={(value,index) => this.setState({issue_invoices:index})}
inputContainerStyle={[{borderBottomColor: 'transparent',borderBottomWidth:0}]}
pickerStyle={{backgroundColor : "#fff",borderWidth:0}}
containerStyle={[styles.dropdown,{width:'auto',flex:1,borderWidth:0,paddingBottom:15}]}
data={issueInvoices}
renderAccessory={() => {return <Icon name="ios-arrow-down" style={{ ...styles.stackedInputIcon, ...styles.selectIcon,...styles.selectIconBlue }} />}}
/>

Use the prop disabledLineType='none' to remove the second underline.
@grit96 Working. Thank you