LoginSignup
9
6

More than 5 years have passed since last update.

Flutterでテキストリンクのやり方

Posted at

URLをブラウザで開くには、url_launcherパッケージを利用します。

dependencies:
  flutter:
    sdk: flutter
  url_launcher: ^3.0.3

以下のように、onTapコールバックなどでlaunchメソッドを利用します。

import 'package:url_launcher/url_launcher.dart';

InkWell(
  child: Text("ここをクリック"),
  onTap: () async {
    if (await canLaunch("url")) {
      await launch("url");
    }
  },
),
9
6
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
9
6