-
-
Notifications
You must be signed in to change notification settings - Fork 414
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
IOS: drag and drop not working on ios. while working perfectly on android. #314
Comments
I'm also facing this same issue. |
We can hope that the issue will be solved soon. please when will you get
the solution for that. kindly share that solution with me.
…On Thu, Sep 23, 2021 at 3:31 AM Hitesh Kumar ***@***.***> wrote:
I'm also facing this same issue.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#314 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKV2NFME3UMK7WMO6DUJHJDUDJKK3ANCNFSM5EEOJHSA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
@umairalirehan You might need to downgrade |
I also had a problem matching this description, having Bottom line: if you have this issue in the simulator, try turning debugging off. |
my problem solved with your help. its working now by closing debugging mode off. you are a great helper. thanks alot |
I solved this issue by removing the changes made to |
I have turn off debugging and it working. Thanks !! |
Hi, I am having exactly the same issue, but I am not in debug mode. Does this library supports latest react-native and reanimated? |
still facing issue in iOS |
any solutions? |
<DraggableFlatList
data={data}
renderItem={renderItem}
keyExtractor={(item, index) => index.toString()}
onDragEnd={({ data }) => setData(data)}
const renderItem = useCallback(
({ item, index, drag, isActive }) => {
return (
<TouchableOpacity
style={{
height: 50,
backgroundColor: isActive ? colors.paratGreen : index % 2 === 0 ? colors.solidRed : colors.solidBgFb,
alignItems: "center",
justifyContent: "center",
marginVertical: hp('0.25')
}}
onLongPress={drag}
>
<Text
style={{
fontFamily: fontFamily.semiBold,
color: colors.white,
fontSize: hp('2'),
}}
>
{item.serviceName}
);
},
[]
);
The text was updated successfully, but these errors were encountered: