flutter 開啟第三方app

鲤斌發表於2024-04-22
android_intent_plus: ^5.0.2
只支援Android,既能指定packageName,也能傳入url,可以跳轉到指定APP的某個頁面,不適用iOS
void openApp() {
  AndroidIntent intent = AndroidIntent(
    action: 'com.example.dashan_board.ACTION', // 替換為您需要的動作
    package: 'com.example.dashan_board', // 替換為目標應用程式的包名
    componentName: 'com.example.dashan_board.BlankActivity', // 替換為目標應用程式的活動元件名稱
  );
  intent.launch();
}

相關文章