[PR #3979] [MERGED] feat: optimize calendar for mobile #5980

Closed
opened 2026-03-23 22:21:11 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3979
Author: @Xazin
Created: 11/21/2023
Status: Merged
Merged: 11/25/2023
Merged by: @Xazin

Base: mainHead: feat/mobile-calendar


📝 Commits (10+)

  • 9dc78de feat: calendar mobile ui
  • 2baa622 chore: merge 'main' into feat/mobile-calendar
  • d881582 chore: push card details screen
  • eba8487 fix: navigation to card details
  • 5889f6d feat: day events screen update on new event
  • 696d1af chore: merge main
  • c167013 fix: changes after merging main
  • d820ca7 fix: missing argument
  • 95b31ce fix: amend test and remove stack
  • e38d5df Merge branch 'main' into feat/mobile-calendar

📊 Changes

19 files changed (+507 additions, -228 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/database_calendar_test.dart (+7 -13)
📝 frontend/appflowy_flutter/integration_test/util/database_test_op.dart (+5 -3)
frontend/appflowy_flutter/lib/mobile/presentation/database/mobile_calendar_events_screen.dart (+97 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_bloc.dart (+14 -17)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart (+154 -88)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_event_card.dart (+82 -52)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_event_editor.dart (+3 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart (+61 -21)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/layout/sizes.dart (+7 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/toolbar/mobile_grid_setting.dart (+16 -7)
📝 frontend/appflowy_flutter/lib/plugins/database_view/tab_bar/mobile/mobile_tab_bar_header.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/tab_bar/tab_bar_view.dart (+10 -5)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/setting_button.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/startup/tasks/generate_router.dart (+24 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/skip_log_in_screen.dart (+7 -6)
📝 frontend/appflowy_flutter/lib/user/presentation/widgets/flowy_logo_title.dart (+3 -2)
📝 frontend/appflowy_flutter/pubspec.lock (+6 -5)
📝 frontend/appflowy_flutter/pubspec.yaml (+5 -2)
📝 frontend/resources/translations/en.json (+2 -1)

📄 Description

Feature Preview

TBD

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/3979 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 11/21/2023 **Status:** ✅ Merged **Merged:** 11/25/2023 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `feat/mobile-calendar` --- ### 📝 Commits (10+) - [`9dc78de`](https://github.com/AppFlowy-IO/AppFlowy/commit/9dc78de8bcea00b8a5cc4e5889c4ad3364ee245e) feat: calendar mobile ui - [`2baa622`](https://github.com/AppFlowy-IO/AppFlowy/commit/2baa62285b9eb0e47772d7093f2fee9c5bd27e35) chore: merge 'main' into feat/mobile-calendar - [`d881582`](https://github.com/AppFlowy-IO/AppFlowy/commit/d881582ce0106cf2f3306e8c0f562704833308da) chore: push card details screen - [`eba8487`](https://github.com/AppFlowy-IO/AppFlowy/commit/eba848735ddf66b35f29b8c7a6243693da37424c) fix: navigation to card details - [`5889f6d`](https://github.com/AppFlowy-IO/AppFlowy/commit/5889f6d62d1c251a1d70082ad093152a0fb564ff) feat: day events screen update on new event - [`696d1af`](https://github.com/AppFlowy-IO/AppFlowy/commit/696d1af2c271ac9f34e9e3f5ef3c8ad504c07c78) chore: merge main - [`c167013`](https://github.com/AppFlowy-IO/AppFlowy/commit/c167013ccafec88487c665831a2813e9a28a7074) fix: changes after merging main - [`d820ca7`](https://github.com/AppFlowy-IO/AppFlowy/commit/d820ca7753e5f410112e1270bbaaa23a395f1e2c) fix: missing argument - [`95b31ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/95b31ce97d62c89b6512120d998ee90f31574751) fix: amend test and remove stack - [`e38d5df`](https://github.com/AppFlowy-IO/AppFlowy/commit/e38d5dfa3efb5c9ed22e2f9fcbaf27de60f8fcb9) Merge branch 'main' into feat/mobile-calendar ### 📊 Changes **19 files changed** (+507 additions, -228 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/database_calendar_test.dart` (+7 -13) 📝 `frontend/appflowy_flutter/integration_test/util/database_test_op.dart` (+5 -3) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/mobile_calendar_events_screen.dart` (+97 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_bloc.dart` (+14 -17) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart` (+154 -88) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_event_card.dart` (+82 -52) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_event_editor.dart` (+3 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart` (+61 -21) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/layout/sizes.dart` (+7 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/toolbar/mobile_grid_setting.dart` (+16 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/tab_bar/mobile/mobile_tab_bar_header.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/tab_bar/tab_bar_view.dart` (+10 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/setting_button.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/startup/tasks/generate_router.dart` (+24 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/skip_log_in_screen.dart` (+7 -6) 📝 `frontend/appflowy_flutter/lib/user/presentation/widgets/flowy_logo_title.dart` (+3 -2) 📝 `frontend/appflowy_flutter/pubspec.lock` (+6 -5) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+5 -2) 📝 `frontend/resources/translations/en.json` (+2 -1) </details> ### 📄 Description ### Feature Preview TBD #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:21:11 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5980
No description provided.