Reputation: 1316
I’m trying to build a functionality where i want to open the settings page of WhatsApp from a simple onTap gesture in my app. To launch WhatsApp I’m using this dependency: https://pub.dev/packages/device_apps
However it isn’t helping me open the settings page specifically. Is there a tool available for me to do this?
Upvotes: 0
Views: 833
Reputation: 2236
WhatsApp has a URL scheme to launch the app and send a message to a phone number.
But I don't think that you will be able to launch WhatsApp settings directly.
Upvotes: 1
Reputation: 149
You can use this by passing the package name of the another application.
dependencies:
android_intent: ^0.3.5
Upvotes: 1