react-native-select-two
react-native-select-two copied to clipboard
Issue with selectedTitleStyle
After selecting the option default color is applying event though I custom applied the selectedTitleStyle
Please change the order of styling in index.j on line 233 from
<Text style={[styles.selectedTitlte, this.defaultFont, selectedTitleStyle, { color: '#333' }]}>{preSelectedItem[0].name}</Text>
To <Text style={[styles.selectedTitlte, this.defaultFont,{ color: '#333' },selectedTitleStyle]}>{preSelectedItem[0].name}</Text>
OR remove default color Object from style <Text style={[styles.selectedTitlte, this.defaultFont,selectedTitleStyle]}>{preSelectedItem[0].name}</Text>
and update the code to project owner/admin