Emanuel Quimper
Emanuel Quimper
```ts private _handleTextChange = (inputValue: string) => { if (this.props.apiKey == null) { throw new Error('Api Key is required'); } this.setState({ inputValue, }); if (inputValue.length >= this.props.minLength!) { this._search(inputValue); }...
@georgeMorales I see what you mean. Can google api do this ? If yes I can plug that. But if not, I'm not sure how I can force it
@hiwyn I don't have my pc with me now. But here can you update in your node_module/react-native-google-autocomplete those fetch https://github.com/AppAndFlow/react-native-google-autocomplete/blob/master/lib/services/Google.service.ts#L126 and https://github.com/AppAndFlow/react-native-google-autocomplete/blob/master/lib/services/Google.service.ts#L144 Add `fetch(url, { mode: 'no-cors' });` and see...
The issue with the cors is not fix with fetch no-cors options. And also the other solution of using cors-anywhere don't work too. https://stackoverflow.com/questions/28359730/google-place-api-no-access-control-allow-origin-header-is-present-on-the-req Look like the solution is to...
@arf1e this is a good idea. A really good one. I will try to add that this weekend. Thank you
@JorgeMoralesLopez Can you try version 0.1.6 :)
yes this one also take the version as a string. So you can do `radius="35000"`
@JorgeMoralesLopez the version 0.1.6 was just a fix for radius. I'm currently working on the location right now
No problem my mistake
@JorgeMoralesLopez Can you try version 0.1.7 I add props call latitude `lat: number` longitude `lng: number` if one is pass both are need.