How to remove menu icon in the same time drog and drop when pressing on the item widget?
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(),
)
],
);
