top of page

[Flutter/dart] flutter_local_notificationの通知タップ時にアプリが終了しているとタップ時の動作が動かない


現象

flutter_local_notificationを使って通知を作成。通知タップ時の動作も登録。

通知が来た時にアプリが立ち上がっている(foregroundでもbackgroundでも)と、期待通りの動作となる。

しかし、通知が来た時にアプリが終了していると、通知をタップしても登録した動作とならない。



原因と解決策

アプリが終了すると登録した動作は消えてしまうらしい(参考)。


Note: from version 4.0 of the plugin, calling initialize will not trigger the onSelectNotification callback when the application was started by tapping on a notification to trigger. Use the getNotificationAppLaunchDetails method that is available in the plugin if you need to handle a notification triggering the launch for an app e.g. change the home route of the app for deep-linking.



対策としては、getNotificationAppLaunchDetails()というメソッドにより、アプリが通知タップによって始まったか否かが分かるので、通知タップから始まった場合は所望の動作を実行すればよい。


NotificationAppLaunchDetails _lanuchDeatil
=await flutterLocalNotificationsPlugin.launchedFromNotification();

if (_lanuchDeatil!=null){
    if (_lanuchDeatil.didNotificationLaunchApp){
      if (_lanuchDeatil.payload==null){

      }
      else {
        ・・・         
      }
    }
  }
}

_lanuchDeatil.didNotificationLaunchAppがtrueならば通知タップによって始まっているので、所望の動作を行う。その際、_lanuchDeatil.payloadに通知作成時に渡したpayloadが入っているので、参照する。

最新記事

すべて表示

【Flutter/Dart】TextFieldで文字列をフォーマットする

やりたいこと TextFieldで入力フォームを作りたい。 例えば入力内容が金額の場合、3桁区切りで頭に¥を付けた表記にしたい。 ただしユーザにこれらを入力させるのではなく、ユーザはあくまで数字を入力するだけで、アプリ側で自動でフォーマットしたい。 方法...

【Flutter/dart】late変数が初期化されたかのチェック

やりたいこと 初期値さえ決まればあとは不変な変数がある ただし、コンストラクタ起動時にはまだ決定できない このような変数について late finalで変数を定義 (何らかのタイミングで)初期化されたかどうかをチェックし、されていなければ値を入れる(チェックしないとfina...

Comentarios


カテゴリ

あなたの買い物をサポートする
アプリ Shop Plan

iphone6.5p2.png

​いつ何を買うかの計画を立てられるアプリです。

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png

靴を大切にしよう!靴管理アプリ SHOES_KEEP

納品:iPhone6.5①.png

靴の履いた回数、お手入れ回数を管理するアプリです。

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png

「後で読む」を忘れないアプリ ArticleReminder

気になった​Webサイトを登録し、指定時刻にリマインダを送れるアプリです

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png
bottom of page