Wayne
Wayne
I also had the same issue. I confirmed that this problem does not exist when only React Native's textinput is used. I expected there to be a problem with React...
My rn version is 0.63. I got the same issue when I use big size an image.
It is facebook/fresco issue.
~~I got a similar error. I'm guessing that There's a bug within the CPP code. scheduleOnUI is called, but it seems that an invalid pointer value is passed. and I'm...
My issue was caused by excessive use of useAnimatedReaction. After I replaced useAnimatedReaction with another hook, the ANR was gone. It seems that a new thread is created every time...
On Android, use progressViewOffset prop. progressViewOffset={paddingHeight} On iOS, In the following props, use what you need. contentInset={{ top: paddingHeight }} contentContainerStyle={{ paddingTop: Platform.OS === 'ios' ? 0 : paddingHeight }}...