Mohammed Bouarour
Mohammed Bouarour
Same for me :( I can't see the file I'm saving
Had the same issue, any updates !
Same issue here, using Expo 54.0.22 with react-native: 0.81.5
In my case, to fix this issue I had to execute this once: `textInputRef.current?.setNativeProps({ text });` More details : https://github.com/facebook/react-native/issues/52854#issuecomment-3514945557
@PatoSala To make this work, the text value needs at least one character when using setNativeProps. Update your code accordingly and it should work. ``` const handleOnLayout = () =>...