[PR #5975] [MERGED] feat: open the row page on mobile #7124

Closed
opened 2026-03-23 23:18:12 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5975
Author: @LucasXu0
Created: 8/15/2024
Status: Merged
Merged: 8/15/2024
Merged by: @LucasXu0

Base: mainHead: open_row_as_a_page


📝 Commits (10+)

  • c81e5ef chore: add dart dependency validator
  • 4f114d8 feat: open the row page on mobile
  • b1af185 Revert "chore: add dart dependency validator"
  • 3adefe7 Merge branch 'main' into open_row_as_a_page
  • 7dc384f chore: update translations
  • c00fb59 feat: preload row page to reduce open time
  • 956cc0e chore: don't add orphan doc into recent records
  • e3cee83 fix: bloc error
  • 69871b9 fix: migrate the row page title to latest design
  • 99f72ab chore: optimize database mobile UI

📊 Changes

13 files changed (+229 additions, -163 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/application/mobile_router.dart (+7 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar/app_bar.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar/app_bar_actions.dart (+25 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart (+8 -8)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_rename_widget.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_card_detail_screen.dart (+4 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/row_page_button.dart (+116 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/application/calculations/calculations_bloc.dart (+11 -5)
📝 frontend/appflowy_flutter/lib/plugins/database_document/presentation/database_document_title.dart (+32 -130)
📝 frontend/appflowy_flutter/lib/plugins/document/application/document_collaborators_bloc.dart (+4 -0)
📝 frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart (+6 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/view_title_bar.dart (+12 -11)
📝 frontend/resources/translations/en.json (+2 -1)

📄 Description

Feature Preview

Screenshot 2024-08-15 at 17 57 57

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/5975 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/15/2024 **Status:** ✅ Merged **Merged:** 8/15/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `open_row_as_a_page` --- ### 📝 Commits (10+) - [`c81e5ef`](https://github.com/AppFlowy-IO/AppFlowy/commit/c81e5ef0ed7b0f1e74d6ba499722a9e2b566862f) chore: add dart dependency validator - [`4f114d8`](https://github.com/AppFlowy-IO/AppFlowy/commit/4f114d8ff342567646bd958319a51f09f39343ba) feat: open the row page on mobile - [`b1af185`](https://github.com/AppFlowy-IO/AppFlowy/commit/b1af18552d16df031df02350cb1a06687b5801c5) Revert "chore: add dart dependency validator" - [`3adefe7`](https://github.com/AppFlowy-IO/AppFlowy/commit/3adefe7c5dc322f33d9777977260c64c6f8f5f9c) Merge branch 'main' into open_row_as_a_page - [`7dc384f`](https://github.com/AppFlowy-IO/AppFlowy/commit/7dc384fb87f088a502e55a691c6a243217c80d3b) chore: update translations - [`c00fb59`](https://github.com/AppFlowy-IO/AppFlowy/commit/c00fb592a5bf465bf1f289a8a8da437015988228) feat: preload row page to reduce open time - [`956cc0e`](https://github.com/AppFlowy-IO/AppFlowy/commit/956cc0e69facad30cb326bfdb86ec8c5ee4f23fd) chore: don't add orphan doc into recent records - [`e3cee83`](https://github.com/AppFlowy-IO/AppFlowy/commit/e3cee832f6820ce6d23c9e62c46530af42a26ec0) fix: bloc error - [`69871b9`](https://github.com/AppFlowy-IO/AppFlowy/commit/69871b96beaef5a56a1c12d1a132e06efba5301b) fix: migrate the row page title to latest design - [`99f72ab`](https://github.com/AppFlowy-IO/AppFlowy/commit/99f72ab090f5f9e71bdd7d54d11f1f7b89e92b35) chore: optimize database mobile UI ### 📊 Changes **13 files changed** (+229 additions, -163 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/application/mobile_router.dart` (+7 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar/app_bar.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar/app_bar_actions.dart` (+25 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart` (+8 -8) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_rename_widget.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_card_detail_screen.dart` (+4 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/row_page_button.dart` (+116 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/application/calculations/calculations_bloc.dart` (+11 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database_document/presentation/database_document_title.dart` (+32 -130) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/document_collaborators_bloc.dart` (+4 -0) 📝 `frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart` (+6 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/view_title_bar.dart` (+12 -11) 📝 `frontend/resources/translations/en.json` (+2 -1) </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 <img width="878" alt="Screenshot 2024-08-15 at 17 57 57" src="https://github.com/user-attachments/assets/ab63125c-6c64-47a0-a467-f286841fc133"> <!--- 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) - [ ] 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 23:18:12 +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#7124
No description provided.