Noah Allen

Results 41 comments of Noah Allen

A similar issue on another modal package: https://github.com/react-native-community/react-native-modal/issues/92 I don't think `useNativeDriver: false` is a long term solution due to performance (which is already poor on low-powered android devices). I...

I can confirm it's not Fedora specific as well -- this is what it looks like on Arch: ![image](https://user-images.githubusercontent.com/6265975/166848898-85820b9a-1e29-45a6-9558-0603a214a2e3.png)

This is an issue for me. I'm specifically using deep sleep (e.g. suspend to RAM), and I believe it was working with non-deep sleep. Here's my config: ```sh exec swayidle...

I went with the route of triggering swaylock before doing anything else: ```sh ### Idle configuration exec swayidle -w \ timeout 300 'swaylock' \ timeout 301 'systemctl suspend' \ after-resume...

Can confirm, removing `indicator-idle-visible` solves the issue for me. However, I was fairly sure that when I configured Sway 6 months ago, I did not have the issue. I think...

I sometimes get crashes when opening the app that don't result in red screens. These can be caused by configuration of native code, and I end up having to open...

Separately, regarding stack traces, it seems that I don't reliably get line numbers, or at least the line numbers are unhelpful. Sometimes I just get a reference to the bundle...

To second that, often it will remain on "not ready for debugging" directly after telling it to debug JS remotely - I'm guessing because the server is in the process...

An ongoing bug which I'm getting really highlights how inadequate React Native's tooling is when it comes to figuring out where a native crash originates in your JS code. Let...

Yeah, was pretty confused. It doesn't quite seem like we should be adding the `onCreate()` method (it does not exist previously) to our main activity, since react native doesn't include...