byteburgers / react-native-autocomplete-input

Pure javascript autocomplete input for react-native
https://byteburgers.com/autocomplete
MIT License
818 stars 255 forks source link

Can not remove FlatList's border #197

Closed jeanyhuynh closed 3 years ago

jeanyhuynh commented 3 years ago

How to remove the border or add my style on result FlatList ? Hope anyone can help. Thanks

mrlaessig commented 3 years ago

Did you try to pass your styles down to the <FlatList />?

<Autocomplete
  // ... other props
  flatListProps={{
    style: styles.flatList,
    // ... other FlatList props
  }}
/>
jeanyhuynh commented 3 years ago

Hi @mrlaessig, Thanks for your help. You save my life. ^^