onLongPress method
Wraps widget with long press gesture
Implementation
Widget onLongPress(VoidCallback? onLongPress) {
return GestureDetector(onLongPress: onLongPress, child: this);
}
Wraps widget with long press gesture
Widget onLongPress(VoidCallback? onLongPress) {
return GestureDetector(onLongPress: onLongPress, child: this);
}