rafaelmotta / react-native-tag-select

🏷 A simple tag component to act as radio button / checkbox
156 stars 43 forks source link

Override props. #24

Open ryanfox1985 opened 4 years ago

ryanfox1985 commented 4 years ago

Hello,

I override the props with the data in order to able to customize each item. Here is an example:

data = [
  {
     id: "musica"
     itemLabelStyleSelected: {backgroundColor: "#F05F3E"}
     label: "Música"
   }
....
]

image

Regards.