0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[iPhone]アクティブなアプリから別アプリを起動する[Flutter]

Posted at

概要

アクティブなアプリ(画面上に表示している)から別アプリを起動する方法をメモしています。

実装

呼び出される側(別アプリ)

info.plistに以下の内容を追加する。
URL types > URL identifier > 「設定したい文字列」(下記の例だとjp.sample.test.app)
URL types > URL Schemes > 「設定したい文字列」(sample-app)

スクリーンショット 2021-04-25 20.37.45.png

上記の方法は「Custom URL Scheme」と呼ばれています。iOSには他に「Universal Links」というhttpから始まるリンクを設定することもできます。

##呼び出し側(アクティブ)
呼び出す側のアプリは以下の様に「launch」メソッドに先ほどinfo.plistに設定した文字列を渡す事で呼び出せます。
この「launch」はpubspec.yamlに「url_launcher: ^6.0.3」(バージョンは任意)を設定し、flutter pub getにより事前にプラグインをDLしとかないといけません。

import 'package:url_launcher/url_launcher.dart';

  _lancherCameraApp()
  {
    return launch("sample-app://jp.sample.test.app");
  }
0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?