Skip to content
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

Fix: Allow developers to enable or disable drag-and-drop visual feedback. #359

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

sejong2401
Copy link

@sejong2401 sejong2401 commented Aug 31, 2024

Summary

  • This Pull Request addresses an issue with the drag-and-drop visual feedback in the desktop_drop package.
  • Drag-and-drop visual feedback refers to the feature where the mouse cursor changes to a + shape when files are dragged over the app window, and files appear to be dropped onto the app window when the mouse button is released.

Issue

  • In applications without drag-and-drop functionality, the mouse cursor does not change to a + shape, and files return to their original position when the mouse button is released.
  • With the desktop_drop package implemented, the drag-and-drop visual feedback is activated even if the DropTarget widget is not present. This can mislead users into thinking that the app supports drag-and-drop functionality when it does not.

Details

  • This update allows developers to control whether drag-and-drop visual feedback is enabled or disabled.

Usage

  • To enable or disable drag-and-drop visual feedback, use the following code in your widget:
@override
void initState() {
  DesktopDrop.instance.enableDragDropVisualFeedback();
  super.initState();
}

@override
void dispose() {
  DesktopDrop.instance.disableDragDropVisualFeedback();
  super.dispose();
}

Limitations

  • This implementation applies only to macOS. Support for Linux and Windows is not included.
  • The feedback is applied at the page level. Consideration is needed for implementing this at a more granular level within parts of a page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant