sauzy34 / react-native-multi-selectbox

Platform independent (Android / iOS) Selectbox | Picker | Multi-select | Multi-picker. The idea is to bring out the common user interface & user experience on both platforms.
https://www.npmjs.com/package/react-native-multi-selectbox
MIT License
212 stars 32 forks source link

Placeholder color #80

Open danielmponda opened 2 years ago

danielmponda commented 2 years ago

How can i change placeholder color on MultiSelect

akshay-maestro commented 2 years ago

Go to node_modules/react-native-multi-selectbox/src/index.js and search for "kMultiListEmptyLabelStyle", You can edit MultiSelect placeholder color there -

const kMultiListEmptyLabelStyle = {
      fontSize: 15,
      fontFamily: 'Montserrat-Regular',
      paddingLeft: 20,
      color: 'rgba(60, 60, 67, 0.6)',  /*Replace desired color code here*/
      ...multiListEmptyLabelStyle,
}