how to disable the button after the first click?
But in the login page, users type username incorrectly in the first time and second time user cant click second time also, how to fix this?
onPressed: () async {
if (_firstClick) {
_firstClick = false;
(isOffline)
? _showSnackBar()
: checking2(usernameController, context, _url);
}
full question and full code,