0

I want to open the inbox of the mail app from my app, using flutter.

I found some solutions regarding the url_launcher package and setting the mailto: value to ''. However, this didn't work because it opened the compose screen.

Another solution I found was to use the flutter_appavailability library, but that is four years old (and was never updated) and I want a package that is new or at least updated constantly.

Does anyone know how to do it?

cybersam
  • 63,203
  • 6
  • 53
  • 76

1 Answers1

0

You can try this external_app_launcher

Otherwise, call the native channel to open a specific app. Details: Sending the user to another app

monzim
  • 526
  • 2
  • 4
  • 13