Looking through the documentation I couldn't find any reference to being able to set up custom drag points (drag handle or move button etc.) and was wondering if that sort of UX is possible or inline with the vision of this library.
You can do custom drag handles:
https://github.com/atlassian/react-beautiful-dnd#example-custom-drag-handle
Thanks @bmueller-sykes !
Have you removed that example? Because, I cannot find it :(
@bmueller-sykes , have you an example now?
I've found it in course here: https://egghead.io/lessons/react-designate-control-of-dragging-for-a-react-beautiful-dnd-draggable-with-draghandleprops
Thank you, @alexreardon for your great work!
All good - i was going to post that 👍
The yolk essence of the egghead: move {...provided.dragHandleProps} into your drag handle:
<div className='mydraghandle' {...provided.dragHandleProps}></div>
Most helpful comment
The yolk essence of the egghead: move {...provided.dragHandleProps} into your drag handle: