Dawid Małecki

Results 22 comments of Dawid Małecki

Hey, @itsmepetrov and @Jackman3005 I think this issue can be solved by using `Pressable` from `react-native-gesture-handler`. Please let me know if it works for you.

For now I can tell that there is a difference between the old and the new architecture. The event listeners are registered after the event is received in the JS...

Hey @cortinico, is it something that should be supported by React Native? I mean managing nodes that React Native does not know about (they are not In shadow tree)? I...

Hey @grahammendick, just to clarify, is it an issue with old architecture only? The exception seems to not be visible on Fabric. You can see that in [getUIManagerType](https://github.com/facebook/react-native/blob/main/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/common/ViewUtil.kt#L46-L67), the `uiManagerType`...

Hey @namtran-axonvibemta, could you provide some repro for this? I have tried using bottom sheet with some `Pressable` in the background and with talkback turned on. It seems to work...

@Evgen74 I am not sure if it's possible to get `jsCallInvoker` from bridge on a bridgeless mode. I am wondering if there is a way to access `runtimeExecutor` or `CallInvoker`...

@AbeereSpark You should be able to achieve something like that by generating C++ module which gets access to `jsCallInvoker`. You can read more about it [here](https://github.com/reactwg/react-native-new-architecture/blob/main/docs/turbo-modules-xplat.md).

> @coado Apologies for my wobble in reviewing this yesterday, see new reply comment 🙏🏻 It's all good! I've changed it back to throttle 😁

These three test cases enter all specified layout builders in [createLayout](https://github.com/facebook/react-native/blob/main/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/TextLayoutManager.java#L357) (new arch) and [measureSpannedText](https://github.com/facebook/react-native/blob/main/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/TextLayoutManager.java#L357) (old arch) and it seems to work code ```ts import { SafeAreaView, StyleSheet, Text, }...

Hey @ilaloov, do you see this issue happening on both Android and iOS? I can see the issue happening on Android but it seems to be fine on iOS.