Call onMessage method when the app is in background in flutter

后端 未结 4 1514
时光取名叫无心
时光取名叫无心 2020-12-10 20:17

I\'m new in flutter and dart. I\'m trying to connect my app with FCM. When app is in foreground I create flutterLocalNotificationsPlugin and everything works fine, but I don

4条回答
  •  庸人自扰
    2020-12-10 20:53

    According with the last plugin Firebase Cloud Messaging for Flutter version 4.0.0+1, when you create or compile your push notification on console or form make sure to include

    click_action: FLUTTER_NOTIFICATION_CLICK 
    

    as a "Custom data" key-value-pair (under "Advanced options") when targeting an Android device. This option enabling the onResume when your app is in background state.

提交回复
热议问题