onPressed method
Wrap with GestureDetector
Implementation
Widget onPressed(VoidCallback onTap) {
return GestureDetector(
onTap: onTap,
child: this,
);
}
Wrap with GestureDetector
Widget onPressed(VoidCallback onTap) {
return GestureDetector(
onTap: onTap,
child: this,
);
}