| #
dab2a6fa |
| 07-Dec-2021 |
Brent Vatne <[email protected]> |
[ncl] Clarify a couple of examples
|
| #
fb8cd7cf |
| 01-Oct-2021 |
Will Schurman <[email protected]> |
[native-component-list] Inform user about required API key for google geocoding (#14595) (#14601)
|
| #
35f78160 |
| 01-Sep-2021 |
Bartosz Kaszubowski <[email protected]> |
[eslint-config] remove `arrowParens` overwrite, reformat files (#14232)
|
| #
5d59e2b8 |
| 20-Mar-2021 |
Brent Vatne <[email protected]> |
[ncl] A bunch of improvements while testing
|
| #
711270f5 |
| 30-Sep-2020 |
Stanisław Chmiela <[email protected]> |
[ncl] Fix lint warnings (#10443)
# Why
Let's make NCL a top-notch application, always tidy etc.
# How
- configured ESLint for NCL
- fixed all warnings automatically
- changed manually all
[ncl] Fix lint warnings (#10443)
# Why
Let's make NCL a top-notch application, always tidy etc.
# How
- configured ESLint for NCL
- fixed all warnings automatically
- changed manually all `React.Component<object, …` that ESLint "automatically fixed" to `<{}` as per https://github.com/expo/expo/pull/10229#discussion_r490961694
# Test Plan
`yarn lint` no longer warns about warnings.
show more ...
|
| #
78c50230 |
| 22-Aug-2020 |
Evan Bacon <[email protected]> |
Added permission check to geocoding screen
|
| #
f91c6bb8 |
| 29-Jul-2020 |
Tomasz Sapeta <[email protected]> |
[location] Improve and refactor Geocoding API (#9444)
# Why
Messy code.
# How
- `geocodeAsync` and `reverseGeocodeAsync` now always use native implementations by default and don't fall back
[location] Improve and refactor Geocoding API (#9444)
# Why
Messy code.
# How
- `geocodeAsync` and `reverseGeocodeAsync` now always use native implementations by default and don't fall back to Google Maps API (it's been causing some mess and inconsistent results on Android).
- Since we still need Google Maps API implementation (for Web) I added such possibility to use it on other platforms as well with the new `useGoogleMaps` option.
- Added `district`, `subregion` and `timezone` fields to geocoded address object.
- Fixed `LocationGeocodedAddress` type to reflect the possibility of receiving `null` values.
- Added more TSDoc comments.
- Refactored `GeocodingScreen` in NCL.
# Test Plan
Tested NCL examples in the new Geocoding screen on iOS and Android ✅
Went through test-suite tests ✅
show more ...
|