invisible method
Makes the widget invisible and unclickable.
Implementation
Widget invisible() {
return Visibility(
visible: false,
child: IgnorePointer(child: this),
);
}
Makes the widget invisible and unclickable.
Widget invisible() {
return Visibility(
visible: false,
child: IgnorePointer(child: this),
);
}