How can I achieve longpress to select and delete in flutter [closed]
I am currently building a chat app. I want to know how I can achieve longpress to select and delete in a listview in flutter. The feature is similar to that of WhatsApp or telegram where you can longpress and hold to select a item to select it in a listview and then the appbar actions changes and displays a delete button.
Wrap the text widget with a gesture detector, there is a property onLongPress
in this widget. The syntax would be like this
GestureDetector(
onLongPress:(){
//do your stuff
}
)