madfatihid / multi_select_item

Multi select view item in Flutter
MIT License
4 stars 6 forks source link

How to disable longpress and keep only normal press #2

Open divymakkar opened 3 years ago

junaidgoharhashmi commented 2 years ago

edit the MultiSelectController class and set the isSelecting bool by default true. bool isSelecting = true; and also change the bool in this function void set(int i) { listLength = i; isSelecting = true; selectedIndexes.clear(); } also Comment or remove the onLongPress and if condition (isSelected) on onTap