Search code examples
flutteraudiobackground-processjust-audioaudio-service

How to handle onTap on audio notif with plugin audio_service flutter?


I want to handle notification on tap when app in foreground or background then redirect to specific page, I use audio_service plugin to handle background audio, can this plugin handle it?


Solution

  • You can listen to notification click events via one of the following streams:

    • (v0.17): AudioService.notificationClickEventStream
    • (v0.18): AudioService.notificationClicked

    For example:

    AudioService.notificationClicked.listen((clicked) {
      if (clicked) {
        // Navigate to the right page based on your app's state
      }
    });