goege64
goege64
ran into this same issue! on an android 7.1 its especially a problem inside \s, since it blocks any interaction with the content inside due to the focus being forced...
@marcel-happyfloat I added this to my MainApplication.kt ```kt import com.facebook.react.internal.featureflags.ReactNativeFeatureFlags import com.facebook.react.internal.featureflags.ReactNativeNewArchitectureFeatureFlagsDefaults ``` and at the end of the onCreate function ```kt ReactNativeFeatureFlags.dangerouslyForceOverride(object : ReactNativeNewArchitectureFeatureFlagsDefaults() { override fun useEditTextStockAndroidFocusBehavior(): Boolean...
Tried out 0.80.0-rc.3 and the issue does seem to be fixed! thank you.
Hey, thanks for the patch. Ran into this recently and that fixed it. About the other problems, I read the PR and it seems to be a concurrency issue? Do...
> > Hey, thanks for the patch. Ran into this recently and that fixed it. About the other problems, I read the PR and it seems to be a concurrency...