While using pad_button_view on a larger screen, it is likely that user will trigger onTapCancel (larger portion of display is available for users screen pointer(finger) to slide) but this feedback is not handled in pad_button_view so the user only receives TAPDOWN gesture(corresponding to onTapDown gesture of GestureDetector widget).
Therefore, added TAPCANCEL gesture to pad_button_view (corresponding to onTapCancel gesture of GestureDetector widget).
While using pad_button_view on a larger screen, it is likely that user will trigger
onTapCancel
(larger portion of display is available for users screen pointer(finger) to slide) but this feedback is not handled in pad_button_view so the user only receivesTAPDOWN
gesture(corresponding toonTapDown
gesture ofGestureDetector
widget). Therefore, addedTAPCANCEL
gesture to pad_button_view (corresponding toonTapCancel
gesture ofGestureDetector
widget).