n4kz / react-native-material-dropdown

Material dropdown with consistent behaviour on iOS and Android
Other
732 stars 597 forks source link

Colors set off after update to v2 #260

Open alysa-atc opened 3 years ago

alysa-atc commented 3 years ago

Because of expo update, I had to change from react-native-material-dropdown to react-native-material-dropdown-v2. textColor changes to default when an option is selected. Besides, the bottom line is dark. I tried many different approaches with selectedItemColor etc and none worked.

My code is:

<Dropdown
   placeholder='Select role'
   placeholderTextColor={Colors.basicColor2}
   data={this.state.selectOptions}
   baseColor={Colors.basicColor2}
   textColor={Colors.basicColor2}
   onChangeText={this.onChangeText} />

image

image