[PR #4030] [MERGED] feat: mobile board view #6011

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4030
Author: @hyj1204
Created: 11/28/2023
Status: Merged
Merged: 11/30/2023
Merged by: @LucasXu0

Base: mainHead: feat/mobile_board_view


📝 Commits (10+)

  • 21ae489 chore: update outline color
  • 6db3466 refactor: extract MobileBoardContent for board view in mobile
  • 6d56bfe feat: add group card header and footer in mobile
  • feaed0e chore: merge branch 'main' into feat/mobile_board_view
  • 4277ff6 fix: fix merge issues
  • 32d2c99 feat: navigate to MobileCardDetailScreen by DraggableScrollableSheet
  • c6995d0 feat: separate MobileCardContent and _CardContent on desktop
  • 0c3e0c5 feat: add new card feature
  • 14da77c feat: add new group 

  • bb6bc32 feat: add MobileHiddenGroupsColumn

📊 Changes

32 files changed (+2002 additions, -69 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/application/mobile_router.dart (+1 -1)
frontend/appflowy_flutter/lib/mobile/presentation/database/board/board.dart (+4 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/board/mobile_board_content.dart (+284 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/board/mobile_board_screen.dart (+0 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/group_card_header.dart (+175 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/mobile_board_trailing.dart (+129 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/mobile_hidden_groups_column.dart (+323 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/widgets.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card.dart (+1 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/card_cells.dart (+9 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/checkbox.dart (+68 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/checklist.dart (+137 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/date.dart (+74 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/number.dart (+76 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/select_option.dart (+147 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/style.dart (+44 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/text.dart (+75 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/time_stamp.dart (+73 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/url.dart (+63 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/mobile_card_content.dart (+118 -0)

...and 12 more files

📄 Description

Feature Preview

  • Improve card view on the board All types of card cell builder widgets are under `appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells` image
  • Long press to move card and group

  • Add a new card

https://github.com/AppFlowy-IO/AppFlowy/assets/14248245/43774e8f-11d5-4975-9587-2720cfb5cc66

  • Add a new group

https://github.com/AppFlowy-IO/AppFlowy/assets/14248245/37906bea-d346-416c-942a-d00540e50731

  • Rename, hide and unhide a group

https://github.com/AppFlowy-IO/AppFlowy/assets/14248245/20517b92-7dff-4467-881f-b874ece391c3


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/4030 **Author:** [@hyj1204](https://github.com/hyj1204) **Created:** 11/28/2023 **Status:** ✅ Merged **Merged:** 11/30/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feat/mobile_board_view` --- ### 📝 Commits (10+) - [`21ae489`](https://github.com/AppFlowy-IO/AppFlowy/commit/21ae4896dce09e1d5d6034f93f1edda393d29ea9) chore: update outline color - [`6db3466`](https://github.com/AppFlowy-IO/AppFlowy/commit/6db3466207596232c4377aa571cd59cdeee49717) refactor: extract MobileBoardContent for board view in mobile - [`6d56bfe`](https://github.com/AppFlowy-IO/AppFlowy/commit/6d56bfea21fffeed753cb6b9e4ec2db21e8daceb) feat: add group card header and footer in mobile - [`feaed0e`](https://github.com/AppFlowy-IO/AppFlowy/commit/feaed0e30bfe88bc2746857e8d52e8f14559033f) chore: merge branch 'main' into feat/mobile_board_view - [`4277ff6`](https://github.com/AppFlowy-IO/AppFlowy/commit/4277ff68e7314b52304f01429a9e51dfa15cd3c5) fix: fix merge issues - [`32d2c99`](https://github.com/AppFlowy-IO/AppFlowy/commit/32d2c99a068c5a6ff850d8cc6ea9156a224203fc) feat: navigate to MobileCardDetailScreen by DraggableScrollableSheet - [`c6995d0`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6995d0bcb93df3716cfbd00268c22c82e76b792) feat: separate MobileCardContent and _CardContent on desktop - [`0c3e0c5`](https://github.com/AppFlowy-IO/AppFlowy/commit/0c3e0c50845cd146f93ebc3373a877e745b22a8b) feat: add new card feature - [`14da77c`](https://github.com/AppFlowy-IO/AppFlowy/commit/14da77c49d9dd9d998519a66d817534931780e9a) feat: add new group 
 - [`bb6bc32`](https://github.com/AppFlowy-IO/AppFlowy/commit/bb6bc320e8e5205f1916712c86e338b5e939af50) feat: add MobileHiddenGroupsColumn ### 📊 Changes **32 files changed** (+2002 additions, -69 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/application/mobile_router.dart` (+1 -1) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/board/board.dart` (+4 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/board/mobile_board_content.dart` (+284 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/board/mobile_board_screen.dart` (+0 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/group_card_header.dart` (+175 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/mobile_board_trailing.dart` (+129 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/mobile_hidden_groups_column.dart` (+323 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/board/widgets/widgets.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card.dart` (+1 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/card_cells.dart` (+9 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/checkbox.dart` (+68 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/checklist.dart` (+137 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/date.dart` (+74 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/number.dart` (+76 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/select_option.dart` (+147 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/style.dart` (+44 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/text.dart` (+75 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/time_stamp.dart` (+73 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells/url.dart` (+63 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_content/mobile_card_content.dart` (+118 -0) _...and 12 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview - <details> <summary> Improve card view on the board</summary> All types of card cell builder widgets are under `appflowy_flutter/lib/mobile/presentation/database/card/card_content/card_cells` <img width="408" alt="image" src="https://github.com/AppFlowy-IO/AppFlowy/assets/14248245/f5daa370-90c6-4a70-957d-e2ae75c33d62"> </details> - Long press to move card and group - Add a new card https://github.com/AppFlowy-IO/AppFlowy/assets/14248245/43774e8f-11d5-4975-9587-2720cfb5cc66 - Add a new group https://github.com/AppFlowy-IO/AppFlowy/assets/14248245/37906bea-d346-416c-942a-d00540e50731 - Rename, hide and unhide a group https://github.com/AppFlowy-IO/AppFlowy/assets/14248245/20517b92-7dff-4467-881f-b874ece391c3 <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [X] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [X] 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:19 +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#6011
No description provided.