Search code examples
flutterdartgesturedetector

Flutter Gesture detector onTap sound not working


Why flutter GestureDetector doesn't make the tap (or click) sound like on the IconButton widget? Is there any way to implement that?


Solution

  • Try Feedback.forTap(context) . It provides platform-specific feedback like click sound or vibration. Add to the inside onTap callback of GestureDetector