Lower border of search bar input container not appearing - React Native

24 views Asked by At

My current search bar looks like this (lower border does not appear).

This is its current code:

<SearchBar
  containerStyle={{
    backgroundColor: "white",
    padding: 10,
    borderBottomColor: "transparent",
    borderTopColor: "transparent",
  }}
  inputContainerStyle={{
    backgroundColor: "white",
    borderWidth: 1,
    borderColor: COLORS.gray,
  }}
  onChangeText={updateBusca}
  lightTheme
  round
  value={busca}
  onSubmitEditing={() => filterGlossary()}
/>

How do I make it appear?

Thanks

0

There are 0 answers