0

我正在构建一个聊天应用程序并使用 FCM 进行通知。每当用户收到新消息时,当应用程序处于前台时,他会收到弹出通知。

但是,我想自定义通知,使其不会显示弹出消息,而只会在用户位于聊天屏幕本身时振动。当他不在聊天屏幕上时,通知会弹出并振动。

知道如何去做这个客户端吗?先感谢您!

4

1 回答 1

0

有两种类型的通知,数据消息和通知消息。通知消息不由您的应用程序处理,但您可以控制数据消息。

其次,您需要检查您是否与向您发送消息的特定用户在聊天屏幕上。为了满足这个要求,您可以在打开聊天室时将用户 ID 保存在任何位置(SharedPref、Utils 或任何单例),并在离开聊天室时将其删除。现在,当您收到通知时,只需将其与您保存的用户 ID 进行比较,以确定您是要显示通知还是振动

只振动你的手机,你可以使用 package flutter_vibrate 1.0.0和生成通知你可以使用 package flutter_local_notifications

FirebaseMessaging.onMessage.listen((RemoteMessage message) { 
if(message.data.senderID == prefs.getString(‘chatRoomID)){ 

   // Check if the device can vibrate
  bool canVibrate = await Vibrate.canVibrate;

 // Vibrate
 // Vibration duration is a constant 500ms because
 // it cannot be set to a specific duration on iOS.
 Vibrate.vibrate();

 // Vibrate with pauses between each vibration
final Iterable<Duration> pauses = [
const Duration(milliseconds: 500),
const Duration(milliseconds: 1000),
const Duration(milliseconds: 500),
];
// vibrate - sleep 0.5s - vibrate - sleep 1s - vibrate - sleep 0.5s - vibrate
Vibrate.vibrateWithPauses(pauses);
 } Else{  AndroidNotificationDetails(
    'your channel id', 'your channel name', 'your channel description',
    importance: Importance.max,
    priority: Priority.high,
    showWhen: false); } 
}); 

您还需要做的另一件事是在聊天屏幕中显示该新消息。为此,您可以使用 Stream Builder。

于 2021-06-24T05:14:19.503 回答