mattijsf
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