redpanda-bit
redpanda-bit
I am not able to reproduce using Animated.View and `onLayout` code below. @N3TC4T react-native-interactable might be the problem here. I would consider using a newer/better maintained library or your custom...
App crashes upon launch. I get the outputs below on `adb logcat`. ``` ... 02-19 19:18:57.049 14639 14684 I ReactNativeJS: 'Event recieved from onAnimatedEventIssue', { value: 0 } 02-19 19:18:57.050...
[The docs](https://reactnative.dev/docs/direct-manipulation#measureinwindowcallback) mention the method usage in the context of ref instead of event.target. Good to know there's that little trick there though.
Hey Ayush how exactly are you testing this?
Hey @eeeeaaii I used the code you provided and works fine on 0.72.0. It'd be helpful if you can provide specific code that reproduces the issue –even though you provided...
I was able to reproduce after copying and pasting the provided files into a new `npx react-native init AwesomeProject --version=0.71.3` project. ``` * What went wrong: Could not determine the...
> After removing ththe following in android/build.gradle it worked: > > ``` > ... > exclusiveContent { > filter { > includeGroup "com.facebook.react" > } > forRepository { > maven...
Invariant Violation: "app" has not been registered - AppRegistry.js | runnables[appKey] is undefined
Can you please share the contents of the index.js file at the root of the project? The error usually points to the code below which is found at `/index.js`. Also...
Invariant Violation: "app" has not been registered - AppRegistry.js | runnables[appKey] is undefined
What else have you tried to fix this error? Side note: https://github.com/facebook/react-native/commit/57774a4a981e2f12cfe9b029447e34f203221b18 `./app.json` ```JSON { "name": "AwesomeApp", "displayName": "AwesomeApp" } ```
Invariant Violation: "app" has not been registered - AppRegistry.js | runnables[appKey] is undefined
Hey @vikil143 your `index.js` file is missing the import for `App`. If it still doesn't work, it would be easier to help you if you please provide a reproducer.