Mee
Mee

Reputation: 1651

can't phone call directly from flutter app

I am trying to make a phone call using flutter app; I have found url_launcher package. However, it only directs the user to the phone itself and click the green call button to make a regular phone call. Is there a way to make the app call directly and and not using the phone of the user itself?

Upvotes: 1

Views: 402

Answers (1)

Majid Sadrayi
Majid Sadrayi

Reputation: 343

The method you used for that make android make call. if you need make call by your own you need implement ui of calling screen and work with android.telecom . use https://flutter.dev/docs/development/platform-integration/platform-channels to do it yourself by implementing platform-specific code such as CallKit/ConnectionService.

Upvotes: 1

Related Questions