Khoa Tran

Results 3 comments of Khoa Tran

In my project.notification is still received even when the application is closed.but i use localpush notification // Push message received event CrossFirebasePushNotification.Current.OnNotificationReceived += (s, p) => { NotificationCenter.Current.Show(new NotificationRequest() {...

**in app.xaml.cs share code** // Push message received event CrossFirebasePushNotification.Current.OnNotificationReceived += (s, p) => { NotificationCenter.Current.Show(new NotificationRequest() { BadgeNumber = 1, Description = p.Data["title"].ToString(), Title = p.Data["content"].ToString() }); ; System.Diagnostics.Debug.WriteLine(DateTime.Now.ToString()+":Received"+JsonConvert.SerializeObject(p.Data));...