react-native-material-dropdown icon indicating copy to clipboard operation
react-native-material-dropdown copied to clipboard

How to add style to item of dropdown list?

Open navanit-jha opened this issue 5 years ago • 2 comments

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

navanit-jha avatar Feb 11 '20 05:02 navanit-jha

Maybe you can use prop itemTextStyle.

IkaroAlef avatar Feb 17 '20 19:02 IkaroAlef

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.

Sandhya-Deshmukh avatar Jul 25 '20 12:07 Sandhya-Deshmukh