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) ?
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) ?
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();
}