2

I am implementing a video call feature in Flutter with the help of Firebase Cloud Messaging, it's working fine in foreground.

my doubt is while app is in background I need to get a receiving call same like as WhatsApp in both Android and IOS .... is it possible in flutter?

1 Answers1

1

yes. it is possible by the combination of push notification and flutter_callkeep to show the upcoming call screen.

Or if you want to run the background process you need to refer to Method Channels, and here is a post about creating a service for running app in the background. also background_fetch is a useful package for background process.

ajay
  • 808
  • 9
  • 18