If expo react native debugger open, swipe doesn't respond in IOS
See original GitHub issueDescription
When open react native debugger open, swipe doesn’t response in ios device and simulators.
Screenshots
Steps To Reproduce
- Open react native debugger in ios emulator or device.
- Swipe right or left
- Swipe doesn’t happen
- Close react native debugger
- Everything is fine
Expected behavior
Animation will start on swipe.
Actual behavior
Animation doesn’t start on swipe.
Snack or minimal code example
import React from "react";
import { PanGestureHandler } from 'react-native-gesture-handler';
import Animated from "react-native-reanimated";
const {
Value, event, set
} = Animated;
export default () => {
const translationX = new Value(0);
return (
<PanGestureHandler
onGestureEvent={ event([
{
nativeEvent: {
translationX: x => set(translationX, x),
},
},
])}>
<Animated.View style={{height: 300, width: 300, backgroundColor: 'red', transform: [{translateX: translationX}]}}>
</Animated.View>
</PanGestureHandler>
);
};
Package versions
- React: “16.13.1”
- Expo: “40.0.0”
- React Native Gesture Handler: “1.8.0”
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Cant debug with react native debugger - Stack Overflow
The simplest solution is to make sure that you have React Native Debugger running before you do react-native run-ios And you should connect ......
Read more >React Native: How To Publish An Expo App To TestFlight + ...
In Xcode, select the Xcode menu, select the Open Developer Tool option, and select Application Loader . Here you can import & upload...
Read more >Intro to Debugging React Native (iOS and Android) - Medium
Debugging a React Native app, while similar to the web, is a bit different. Once you get the hang of it and know...
Read more >In iOS 15, when the app is restarted, it immediately crashes.
If someone opens the app after ~1 hour from the last time he/she opened it, the app skips the SplashScreen and after that...
Read more >Debugging - Expo Documentation
Start your app, open the in-app developer menu, and select “Debug JS Remotely.” Configure __REDUX_DEVTOOLS_EXTENSION__ as shown here. You're now good to go!...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jakub-gonet I see, thanks.
So this bug is still open, without a workaround.
@omid-ebrahimi, upgrade it to 1.10.1, there was a patch fixing those issues.