LoginSignup
0
0

More than 1 year has passed since last update.

[Flutter][備忘録]GestureDetectorのonTapが機能したかった時の俺的対処法

Posted at

はじめに

FlutterでGestureDetectorを使って画面全体にonTap付けたかった時にうまく動作しなくて相当調べるのに時間がかかったので備忘録として記事に残します。
この記事で紹介している方法以外にもいい方法があればコメントで教えてもらえるとありがたいです🙏

結論

main.dart
GestureDetector(
    onTap: () => hoge(),
    child: ConstrainedBox(
        constraints: const BoxConstraints.expand(),
        child: MyAppWidget(),
    ),
);

子ウィジェットとGestureDetectorの間にConstrainedBoxを挟んであげると動作しました。ConstrainedBoxはchildに指定したウィジェットの要素の大きさを制限するものだそうです。

0
0
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
0