Reputation: 1088
Hi I have created an application for video calling using agora package, I would like to know how to in flutter we can be able to show a incoming call screen or push notification. Thanks in advance.
Upvotes: 4
Views: 1099
Reputation: 199
Personally, I used stacked_services to show a custom dialog (without context) from my service when I receive an icoming call.
I then changed the Dialog() to a Scaffold() to make it a full screen notification that was completely customizable.
Upvotes: 1