hady kamel
hady kamel

Reputation: 41

How to display income call page to receiver user when app is killed

I'm working on flutter voip app and i'm stuck ow how to display call page to receiver when app is killed Such as facebook or whatsapp do Is there any way to achieve this with flutter ..if not how to achieve this natively

Upvotes: 4

Views: 871

Answers (1)

Savas Adar
Savas Adar

Reputation: 4262

You should use CallKit on IOS side for show native IOS call screen. When a voip notification came, You can show IOS call own screen. Also you should PushKit for get voip notifications.

Some plugins for show OS native call screens both android and iOS:

https://pub.dev/packages/flutter_callkeep

https://pub.dev/packages/flutter_callkit_voximplant

Upvotes: 1

Related Questions