diff --git a/frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart b/frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart index 32994cc06a..ad1161e950 100644 --- a/frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart +++ b/frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart @@ -82,13 +82,16 @@ class CalendarDayCard extends StatelessWidget { return Container( color: backgroundColor, - child: MouseRegion( - cursor: SystemMouseCursors.basic, - onEnter: (p) => notifyEnter(context, true), - onExit: (p) => notifyEnter(context, false), - child: Padding( - padding: const EdgeInsets.only(top: 8.0), - child: child, + child: GestureDetector( + onDoubleTap: () => onCreateEvent(date), + child: MouseRegion( + cursor: SystemMouseCursors.basic, + onEnter: (p) => notifyEnter(context, true), + onExit: (p) => notifyEnter(context, false), + child: Padding( + padding: const EdgeInsets.only(top: 8.0), + child: child, + ), ), ), );