2
5

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.

Flutter 画像にクリックイベントをつけるには?

Posted at

ImageはonTapを持っていない・・・

画像をクリックで遷移させたい時や、何かイベントを発動させたい時、普通にonTapがあると思ってたのですが、ありませんでした。。。
スクリーンショット 2021-02-14 21.56.41.jpg

さてどうしましょうか??:thinking:

GestureDetectorを使おう

main.dart
 Widget build(BuildContext context) {
    return ClipRRect(
      borderRadius: BorderRadius.circular(10),
      child: GridTile(
        child: GestureDetector(
          onTap: () {
            // do something
            );
          },
          child: Image.network(
            imageUrl,
            fit: BoxFit.cover,
          ),
        ),
        ),
      ),
    );

GestureDetectorはimageだけじゃなくて、あらゆる任意のWidgetにクリックイベントをつけることができるようです。

これは絶対に使う!

2
5
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
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?