mattijsf

Results 22 comments of mattijsf

@gorhom would the above be worth a v4 patch release?

I'm seeing the same using react-native 0.64. A bit strange because according to the changelog it should have been fixed in 0.57.2: https://github.com/react-native-community/releases/blob/master/CHANGELOG.md#v0572

Not ideal, for the time being I'm using this workaround to have a scrollable overflowing container: ```jsx ```

We are also running into this issue with v4. No solution yet, I tried changing the `throttleTime` to 1 or 0 but this has no effect. I tried deleting the...

Another workaround is to use `[RNSplashScreen showSplash:@"LaunchScreen" inRootView:rootView];` instead of `[RNSplashScreen show];` This will however impact the way the splash screen dismiss animation. The standard/system iOS fade-out animation of the...

I silenced the warning through: ```ts new NativeEventEmitter(Shortcuts as unknown as NativeModule) ``` I guess with some recent react-native updates the [`ShortcutsType`](https://github.com/mouselangelo/react-native-actions-shortcuts/blob/ba5aba0d6f449b8b1bb03444db1692336a63acd6/src/index.tsx#L37) interface is expected to implement `addListener` / `removeListener`....

Is there an open issue where this limitation of AndroidView is tracked within Flutter? Edit: Found it: https://github.com/flutter/flutter/issues/19718

I still have this issue with v10.1.31-rc.0: > Task :rnmapbox_maps:compileDebugKotlin FAILED e: ResourceDrawableIdHelper.kt:5:37 Unresolved reference: Companion ext.kotlinVersion = '1.9.21' [email protected] @rnmapbox/[email protected] Just did another test with 0.72 but it still...

@mfazekas I think it's better for now to either not override `ResourceDrawableIdHelper.getInstance` and just use the deprecated `ResourceDrawableIdHelper.getInstance` in the codebase. Or create a ```kotlin class ResourceDrawableIdHelperCompat { companion object...

> @mattijsf thanks, do you have new arch enabled? Not sure why I haven't seen this issue, while testing... Sure we can remove `getInstance` override. I think a few RC's...