我想在我的颤振应用程序中添加 Amazon Affiliate 链接。当有人点击按钮时,我想打开亚马逊应用程序。我正在使用 url 启动器包。我创建了在浏览器中打开 amazon.com 的按钮。
ElevatedButton(
onPressed: () {
launch("https://www.amazon.com/");
},
child: Text("amazon"),
),
我想在我的颤振应用程序中添加 Amazon Affiliate 链接。当有人点击按钮时,我想打开亚马逊应用程序。我正在使用 url 启动器包。我创建了在浏览器中打开 amazon.com 的按钮。
ElevatedButton(
onPressed: () {
launch("https://www.amazon.com/");
},
child: Text("amazon"),
),
您可以使用 external_app_launcher 插件
https://pub.dev/packages/external_app_launcher
await LaunchApp.isAppInstalled(
androidPackageName: 'com.amazon.mShop.android.shopping'
iosUrlScheme: 'amzn://'
);
不确定amzn://
和com.amazon.mShop.android.shopping
但更好的是,如果用户没有安装应用程序,您可以使用亚马逊官方文档
https://developer.amazon.com/de/docs/reports-promo/deeplink-to-the-amazon-client.html