mattijsf

Results 17 comments of mattijsf

> @dlebedynskyi Intl has been added in the latest version(0.8.1) of Hermes. But it doesn't come with timezone conversion support. When using Hermes on iOS, Intl is not available entirely.

The above patch causes midnight dates to be formatted as `2010-01-01 24:00:00` after applying `.startOf("day")` (see [here](https://github.com/iamkun/dayjs/blob/v1.10.7/src/plugin/timezone/index.js#L123-L124)) once fed into the `Date` constructor by the `.tz` implementation (see [here](https://github.com/iamkun/dayjs/blob/v1.10.7/src/plugin/timezone/index.js#L98-L99)). `24:00`...

@kristfal This was also our conclusion in a past we did last year to solve this error: https://github.com/innovactorybv/react-native-mapbox-gl/commit/b19842b9d5dafc651841746182ec6fe4a25d7908#diff-83bd90811e16ee14c9357ca5dd70f50cR1015 ```java ... } catch (exception: InvalidLatLngBoundsException) { // ignore invalid latlng exceptions,...

I think the current preinstall scripts tries to solve somewhat the fragmented dependency management for iOS projects (manual vs. carthage vs. cocoapods). I'm Carthage user so I would prefer not...

> > Although we are using Recoil in production at Meta, we keep the project in an experimental status today until we are confident in a solution compatible with all...

In hindsight, I suspect the below statement... > "we keep the project in an experimental status today until we are confident in a solution compatible with all upcoming React features...

Apologies for the VERY late response. Is this still worth merging? When I start a new project with the latest version of react-native and with Xcode 10.1 I don't see...

Confirmed that configuring `SwiftShader` fixes the black assets on the map. However it drastically decreases performance of the emulator (tested on macOS) I hope this can be fixed for the...

We have switched to [zustand](https://github.com/pmndrs/zustand) because of the lack of updates and trust of this repo going anywhere...

Inspired by the above answer, main difference being the import of `ANIMATION_CONFIGS`: ```tsx import { useBottomSheetSpringConfigs } from "@gorhom/bottom-sheet" import { ANIMATION_CONFIGS } from "@gorhom/bottom-sheet/src/constants" import { Platform } from...