react-native-select-two icon indicating copy to clipboard operation
react-native-select-two copied to clipboard

Issue with selectedTitleStyle

Open rajeshmalisetty opened this issue 4 years ago • 0 comments

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

rajeshmalisetty avatar Jun 20 '20 05:06 rajeshmalisetty