You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered this issue while using modular with RouterOutlet in a new Flutter project. The RouterOutlet is placed inside the widget tree and occupies the remaining screen space using Expanded(child: RouterOutlet()), where nested navigation takes place. It’s also done this way in the official documentation.
However, depending on the widget inside the RouterOutlet, some parts of the RouterOutlet area become unexpectedly clickable with a sound effect. This also applies when there's another nested RouterOutlet inside it.
The behavior is inconsistent:
Text('123') inside RouterOutlet is not clickable with a sound.
Row(children: [Text('123')]) inside RouterOutlet is clickable with a sound, except for the text itself.
Using Flutter DevTools, I noticed that the clicks triggering the sound effect are intercepted by a Listener widget inside RouterOutlet. However, this was determined indirectly, as the trigger doesn’t always occur precisely on that widget.
I checked for similar issues in both modular and Flutter repositories but couldn’t find anything relevant.
Question
Is there a way to disable this sound effect? I couldn’t find any relevant settings or documentation on this.
Environment
Add your flutter doctor -v
Add your pubspec.yaml
Add your Info.plist
Add your AppDelegate.swift
Add your MainActivity
not applicable
Add your AndroidManifest.xml
not applicable
Add your /app/res/values/strings.xml
not applicable
Describe the bug
Title
System sound on tap inside RouterOutlet
Platform
Applicable only to macOS (my version 15.3.1).
Description
I encountered this issue while using modular with RouterOutlet in a new Flutter project. The RouterOutlet is placed inside the widget tree and occupies the remaining screen space using Expanded(child: RouterOutlet()), where nested navigation takes place. It’s also done this way in the official documentation.
However, depending on the widget inside the RouterOutlet, some parts of the RouterOutlet area become unexpectedly clickable with a sound effect. This also applies when there's another nested RouterOutlet inside it.
The behavior is inconsistent:
Using Flutter DevTools, I noticed that the clicks triggering the sound effect are intercepted by a Listener widget inside RouterOutlet. However, this was determined indirectly, as the trigger doesn’t always occur precisely on that widget.
I checked for similar issues in both modular and Flutter repositories but couldn’t find anything relevant.
Question
Is there a way to disable this sound effect? I couldn’t find any relevant settings or documentation on this.
Environment

Add your
flutter doctor -vAdd your

pubspec.yamlAdd your

Info.plistAdd your

AppDelegate.swiftAdd your
MainActivitynot applicable
Add your
AndroidManifest.xmlnot applicable
Add your
/app/res/values/strings.xmlnot applicable
To Reproduce
Expected behavior
Do not play unexpected system sound on mac os app
Screenshots
(turn on the sound on the video)
Screen.Recording.2025-02-18.at.12.03.44.mov