JoeRoddy / react-native-tag-autocomplete

React Native Tag Autocompletion
69 stars 26 forks source link

how to change background color of list suggestion #41

Open saidhappy010 opened 4 years ago

saidhappy010 commented 4 years ago

I would like to change background color of list suggestion. Please how can i make it?

nihp commented 4 years ago

Kindly use the renderSuggestion props

For eg)

<AutoTags
renderSuggestion = 
{<View style = {{backgroundColor: 'red'}}>
        <Text >
            { suggestedHashTags}
          </Text>
  </View>}
/>