onLongPress method
Add long-press gesture detector
Implementation
Widget onLongPress(VoidCallback action) {
return GestureDetector(
onLongPress: action,
child: this,
);
}
Add long-press gesture detector
Widget onLongPress(VoidCallback action) {
return GestureDetector(
onLongPress: action,
child: this,
);
}