radarlabs / react-native-radar

React Native module for Radar, the leading geofencing and location tracking platform
https://radar.com
Apache License 2.0
170 stars 32 forks source link

Autocomplete input style option not working in react native #308

Open salisuabubakar opened 7 months ago

salisuabubakar commented 7 months ago

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

ShiCheng-Lu commented 5 months ago

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,
      }
    }
  }}
/>