How to remove menu icons in flutter ReorderableListView

Issue

When I create a ReordableListView with flutter there are some Icons (in the right) that appear by default :

enter image description here

I would like to remove them because I want to put other Icons at this place and when I do this it renders this (which is obviously not what I want) :

enter image description here

Thanks for helping !

Solution

Found the answer, I just needed to add this line in my ReordableListView widget:

buildDefaultDragHandles: false,

Answered By – JS1

Answer Checked By – David Goodson (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *