react-native-radar icon indicating copy to clipboard operation
react-native-radar copied to clipboard

Autocomplete input style option not working in react native

Open salisuabubakar opened this issue 10 months ago • 1 comments

Autocomplete input style option not working in react native. Kindly provide example. Thanks

salisuabubakar avatar Apr 03 '24 11:04 salisuabubakar

Hi @salisuabubakar, the styling for the Autocomplete component can be specified within the options prop.

<Autocomplete
  options={{
    near: {
      latitude: 40.7342,
      longitude: -73.9911,
    },
    style: {
      input: {
        backgroundColor: 'yellow',
        borderColor: 'green',
        borderWidth: 2,
      }
    }
  }}
/>

ShiCheng-Lu avatar Jun 24 '24 17:06 ShiCheng-Lu