How to remove the onTap GestureDetector

Project Settings

I want to remove this :

Widget build(BuildContext context) {

return GestureDetector(

onTap: () => _model.unfocusNode.canRequestFocus

? FocusScope.of(context).requestFocus(_model.unfocusNode)

: FocusScope.of(context).unfocus(),
....


Because when i click on it, i generate new random values on my component, which is not what i want to do.

What have you tried so far?

I checked all the action on my widget, nothing found.

Did you check FlutterFlow's Documentation for this topic?
Yes
1