Search code examples
flutterdartdrag-and-drop

How to restrict dragging some elements in Flutter's RerderableListView


I'd like some elements in RerderableListView to be non-draggable. I know I can do nothing in the onReorder function, but I want to deny start dragging. How to achieve that?


Solution

  • I have wrapped widgets I want to be non-draggable with GestureDetector and set empty handler onLongPress: (){}.