ReorderableListView (Flutter)

Viewed 89

How to remove menu icon in the same time drog and drop when pressing on the item widget?

enter image description here

The code:

ReorderableListView(
        scrollController: ScrollController(),
        onReorder: (int oldIndex, int newIndex) => controller.onReorder(oldIndex, newIndex),
        children: [
          for (final item in controller.items)
            OptionCardContainer(
              item: item,
              controller: controller,
              key: GlobalKey(),
            )
        ],
      );
0 Answers
Related