diff --git a/frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_mobile_quick_action_button.dart b/frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_mobile_quick_action_button.dart index ad5ac13bd5..4f0022bde4 100644 --- a/frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_mobile_quick_action_button.dart +++ b/frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_mobile_quick_action_button.dart @@ -25,7 +25,11 @@ class MobileQuickActionButton extends StatelessWidget { return Padding( padding: const EdgeInsets.symmetric(horizontal: 4), child: InkWell( - onTap: onTap, + onTap: () { + if (enable) { + onTap(); + } + }, borderRadius: BorderRadius.circular(12), overlayColor: enable ? null : const MaterialStatePropertyAll(Colors.transparent),