n4kz / react-native-material-dropdown

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

How to add style to item of dropdown list? #213

Open navanit-jha opened 4 years ago

navanit-jha commented 4 years ago

Hello, I am trying to add style to the list item of the dropdown. But I am facing the issue. Are there any specific props available for this or is there any other way to customize the item of the list ?

Thanks

IkaroAlef commented 4 years ago

Maybe you can use prop itemTextStyle.

Sandhya-Deshmukh commented 4 years ago

You can achive style to the list item of dropdown by using different item style ,

Example:-

<Dropdown
          itemColor="#0015ff"
          selectedItemColor="#ff0000"
          baseColor={"#ff0000"}
          textColor="#ff0000"
          label="Favorite Fruit"
          data={data}
        />

This will be help you.