ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
[TOC] ## GestureDetector api ``` GestureDetector({ Key? key, this.child, this.onTapDown, this.onTapUp, this.onTap, this.onTapCancel, ... ``` code ``` GestureDetector( child:Text("asd"), onTap: (){ print("top"); }, ) ```