Dawid Małecki
Dawid Małecki
@ilaloov This is how it works for me on iPhone 16 emulator. The `onContentSizeChange` in outside `TextInput` is printed twice initially, but when I open a modal with the inside...
I think I found what causes this issue. The problem is that on Android the screen size in modal view state is updated asynchronous which leads to triggering [onLayout](https://github.com/facebook/react-native/blob/main/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java#L251-L259) in...
I've created a minimal reproducer for this one https://github.com/coado/react-native-layout-animation-fabric-issue. The animation is not working on both iOS and android on the new architecture. The animation stops working when the `useNativeDriver`...
The problem here is with mixing JS and native side animations and the view flattening on top of that. When there is an animation defined on JS side (like the...
> I just discovered the same problem. It seems that the `delete` animation is not working anymore in the latests versions (75 and 74). [Here is a expo-snack](https://snack.expo.dev/@madzapp/layoutanimation) where you...
> Can't seem to repro your minimal producer on Android @coado . Layout Animations do not run. Hey, I've added the repro on iOS for now just to show the...
> @coado I forget to mention that my snack it is not working on IOS. On android the example works fine. `collapsable` prop is only available for android and does...
I was able to reproduce it, so I will try to investigate this one. https://github.com/user-attachments/assets/70cb75ba-73bd-4ed4-a26a-b7787b77adb9
@cipolleschi For now I can tell that the problem occurs, because of the race condition that happens when there are two reloads one after the other. When the reload starts...
@cipolleschi I am not sure if I understand that correctly, but I think that `warnImageSource` is called only in the [`setSource`](https://github.com/facebook/react-native/blob/main/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageView.kt#L321-L360) function, which is called with uri props passed by...