Dav
Dav
@glorat I am also facing this issue, can you share your hardcoded solution? I would like to see it if possible, I am currently adding a TEST env var to...
This is also a problem when using clustering, and you zoom in and out a few times it obviously changes the number of rendered markers and I get an out...
With all due respect @salah-ghanim, as I've pointed out in [the other comment ](https://github.com/react-native-maps/react-native-maps/issues/5739#issuecomment-3316034503) anything newer than v1.20.1 is just simply not reliable or viable to use, there are literally...
Unfortunately I get a Typescript error with simply adding `TouchableComponent={TouchableOpacity}`: ``` Type 'ForwardRefExoticComponent' is not assignable to type 'typeof Component'. Type 'ForwardRefExoticComponent' provides no match for the signature 'new (props:...
Ok, my eslint or OCD won't like me using `any` so `TouchableComponent={TouchableOpacity as unknown as typeof Component}` will also do the trick, hope this gets fixed soon. Cheers
For others looking for a TS ~solution~ workaround to this problem: - `TouchableComponent={TouchableOpacity}` ❌ (from `react-native`) - `TouchableComponent={TouchableOpacity as any}` ✅ (if your eslint allows it) - `TouchableComponent={TouchableOpacity as unknown...
I started to add `TouchableComponent={TouchableOpacity as unknown as typeof Component}` to all my buttons and chips, turns out I have a _lot_! So my next thought was to replace the...
Will it be a requirement to add this plugin to the expo config? ```json "plugins": [ [ "react-native-radar", { "iosFraud": true, "iosNSLocationAlwaysAndWhenInUseUsageDescription": "test value", "iosBackgroundMode": true, "androidFraud": true, "androidBackgroundPermission": true,...
This is a real blocker for typescript projects, I can't believe it was released without strong typing but even the firebase web sdk seems to be an after thought and...