flutter 按钮避免重复点击

onTap: () {
                  if (controller.isSend.value) {
                    return null;
                  } else {
                
                    if (onClick != null && controller.isCan) {
                        onClick!();

                        controller.isCan = false;
                        // 3000 毫秒内 不能多次点击
                        Future.delayed(Duration(milliseconds: 3000), () {
                          controller.isCan = true;
                        });
                      }
                  }
                },

你可能感兴趣的:(flutter 按钮避免重复点击)