-
Notifications
You must be signed in to change notification settings - Fork 15
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
Not responding to touch inside BottomSheet @gorhom/bottom-sheet #5
Comments
Can you please send a link to the general problem? I assume that the Does the ScrollView from the I'm not sure if it's enough to just replace the In a good way, |
I face the same issue when using this with @gorhom/bottom-sheet. I solved this problem in my folk. @serhiijun As @rozhkovs said, I migrated to react-native-reanimated from react-native, and added feature to replace ScrollView Just in case, I will create PR. I hope this helps! |
I assume that the problem arises precisely when used inside the BottomSheet. Here I described the nearest plan for completion |
<BottomSheetModal |
hey everybody, did anyone find solution for that problem? |
The component works fine on iOS, but on Android (both in the simulator and on real devices), it does not respond to touch when trying to scroll. I am using Expo, and this is a common issue when using
import { ScrollView } from "react-native";
. Therefore, we are usingimport { ScrollView } from "react-native-gesture-handler";
instead.However, I am unsure how to apply this fix to the current library. I attempted to fork the library and replace
ScrollView
imports withreact-native-gesture-handler
, but this did not resolve the issue.For context, I am using your component inside a
BottomSheet
from@gorhom/bottom-sheet
(import BottomSheetModal, { BottomSheetBackdrop } from "@gorhom/bottom-sheet";
).The text was updated successfully, but these errors were encountered: