kowsickram
kowsickram
> I can confirm - the same issue exists on 0.76.9 and 0.77.2. Can you add the reproducer they ask @3plusalpha
> It is caused by react-navigation. Here is a quick fix: [expo/expo#32991 (comment)](https://github.com/expo/expo/issues/32991#issuecomment-2489620459) actually, there is an issue in the Modal component provided by react native in the latest version,...
{ "name": "ayushya", "version": "0.0.1", "private": true, "scripts": { "android": "react-native run-android", "ios": "react-native run-ios", "lint": "eslint .", "lint-fix": "eslint --fix", "start": "react-native start", "test": "jest" }, "dependencies": { "@react-native-documents/picker":...
import React from "react"; import Animated, { FadeIn, FadeOut } from "react-native-reanimated"; const Modal = ({ visible, children }) => { return visible ? ( {children} ) : null; };...