flutter - how to open mail/sms apps

Viewed 621

url_launcher helps to draft an email, make a call and send a sms to a specific recipient. Is there any way to launch mail/sms apps (inbox - not draft) ?

1 Answers

I'm not sure if you can do that in iOS but for Android, use android_intent plugin and put the appropriate package_name in data.

if (platform.isAndroid) {
  AndroidIntent intent = AndroidIntent(
    action: 'action_view',
    data: 'package:com.example.app',
  );
  await intent.launch();
}
Related