-
-
Notifications
You must be signed in to change notification settings - Fork 766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v4] | Bottom Sheet does not open when Debug with Chrome is enabled #1447
Comments
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
@kgtrey1 Bottom Sheet does not open when chrome debugging is enabled because this library relies on React Native Reanimated thus we have to add React Native Reanimated in our app and in v2 of React Native Reanimated it is clearly mentioned in Known problems and limitations that remote debugging is no longer possible in 2.x. This issue persist in RNReanimated 3.x as well but only upto 3.3.0 This issue has been resolved in RN-reanimated 3.x from v3.4.0 and above. While adding RNReanimated during the installation of gorhom/BottomSheet add RNReanimated v3.4.0 and above in package.json and then rebuild. |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
This issue was closed because it has been stalled for 5 days with no activity. |
Bug
When turning on "debug with chrome", the bottom sheet doesn't open at all. When it's not turned on, everything is working as expected.
Environment info
Steps To Reproduce
Describe what you expected to happen:
When turning on debug with chrome, the bottom sheet should open
Reproducible sample code
`
const OngoingTripMapScreen: React.FC = (): JSX.Element => {
const mapRef = React.useRef(null)
const bottomSheetRef = React.useRef(null)
}
`
The text was updated successfully, but these errors were encountered: