Reputation:
I have already built a chat app to practice flutter and I would really like to integrate push notifications that notify the users when a new message is sent but I don't seem to find any relevant information on the internet about this topic, I am currently using firebase. what can I do in order to achieve this functionality?
Upvotes: 2
Views: 1056
Reputation: 753
you have to use firebase cloud messaging by you have to safe each user token id
that will be notify users for a particular event
check my repository in developer branch where I implement push notification by
using firebase cloud messaging
my repository for push notification
Upvotes: 1
Reputation: 709
Since you are already using firebase, look into Firebase Cloud Messaging. You'll need to
Upvotes: 2