Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to listen for click events on the whole page in flutter

Tags:

flutter

dart

I want to listen to an event wherever I clicked on the whole page

like image 241
krishnaji Avatar asked Sep 11 '25 01:09

krishnaji


1 Answers

Just add this to the Scaffold:

body: GestureDetector(
    behavior: HitTestBehavior.opaque,
    onTap: () {
      // your code
    }
like image 90
MillCreeker Avatar answered Sep 13 '25 14:09

MillCreeker