intent icon indicating copy to clipboard operation
intent copied to clipboard

How to get result of Action.ACTION_CALL?

Open fipooo opened this issue 5 years ago • 1 comments

how to get result in Flutter from android_intent.Intent()? I have code like below and how to get info when call will be disconnected?

android_intent.Intent()
                      ..setAction(android_action.Action.ACTION_CALL)
                      ..setData(Uri(scheme: "tel", path: 'phone number'))
                      ..startActivity();

fipooo avatar Jun 11 '20 23:06 fipooo

Are you looking to make a call or is your app registered for tel and you're trying to receive the number clicked?

ghenry avatar Jul 18 '20 18:07 ghenry