switch back to the running flutter app from another app

Viewed 37

I want to switch from flutter app to phone dialer, do a call, and after call, I want to switch back to the flutter app. Someone guide me how to do it.

1 Answers

If you are talking about calling from the app then you can use the url launcher package from pub.dev - and add this

tel:<phone number>

Here is the package link

Related