react-native
react-native copied to clipboard
A framework for building native applications using React
### Description An invisible refresh control indicator on android blocks any pressable components beneath it This bug occurs given the following setup: 1. TouchableOpacity component above a ScrollView component 2....
### Description Cannot programmatically scroll nested `SectionList` inside `SectionList`. What I'm trying to accomplish is a horizontal bar with categories that will be stickied to the top of the screen,...
### Description I am trying to get a simple RN app to build accessing a Turbo Native ObjC++ module. I followed the example in the Turbo Native docs (https://reactnative.dev/docs/next/the-new-architecture/pillars-turbomodules). I...
## 🐛 Bug Report On Android, modifying the text within the onChange (or onChangeText) callback causes corruption of the text in the TextInput. (Not tested on iOS.) For example, I'm...
### Description After creating a React Native app with the new architecture enabled, using the global `Blob()` constructor resulted in the following error: `Invariant Violation: NativeBlobModule is available.` This was...
### Description ``` W/SoLoader: libjscexecutor.so not found on DirectAPKSoSource: 4 java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "__cxa_bad_typeid" referenced by "/data/app/~~PKlY1zxnY1I_9g3kewPBDA==/com.my.app-oPmcKhUyEBL8mkHRwrWxJA==/base.apk!/lib/arm64-v8a/libjsc.so"... at java.lang.Runtime.load0(Runtime.java:939) at java.lang.System.load(System.java:1628) at com.facebook.soloader.SoLoader$1.load(SoLoader.java:529) at com.facebook.soloader.DirectApkSoSource.loadLibrary(DirectApkSoSource.java:77) at com.facebook.soloader.SoLoader.doLoadLibraryBySoName(SoLoader.java:1038)...
### Description - RN migrated from 0.66.0 to 0.68.2 using manual upgrade tool instructions; - Android; Hermes enabled. - If New Arch is disabled: App been built and runs ok...
### Description I have this interface: ```ts export interface NativeProps extends ViewProps { data: ReadonlyArray; selectedIndexes: ReadonlyArray; onChange: DirectEventHandler; } ``` When I do codegen I get this: ``` [Codegen]...
## Summary This adds support for `maintainVisibleContentPosition` on Android. The implementation is heavily inspired from iOS, it works by finding the first visible view and its frame before views are...
### Description As obvious by inspection the PromiseImpl java class (https://github.com/facebook/react-native/blob/main/ReactAndroid/src/main/java/com/facebook/react/bridge/PromiseImpl.java) is not thread safe as it takes zero precautions in that direction. And as expected I get stacktraces for...