[PR #4754] [MERGED] fix: mobile UI regression #6425

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4754
Author: @LucasXu0
Created: 2/27/2024
Status: Merged
Merged: 2/28/2024
Merged by: @LucasXu0

Base: mainHead: ui_regression


📝 Commits (10+)

  • df5c7f7 fix: aa menu item selected status
  • 07a4e0d feat: support selecting word on iOS throught long pressing
  • 53a2843 chore: update editor version
  • 55847ae feat: update add block menu colors
  • 27fd2bd feat: add scrollbar in bottom sheet
  • 3d1404a fix: aa menu should not dimiss after changing block type
  • ac09b1c fix: add link menu ui issues
  • e193971 feat: sync bius status
  • 59e73a5 Update frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar_item.dart
  • c5457ed chore: update editor version

📊 Changes

17 files changed (+277 additions, -169 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/show_mobile_bottom_sheet.dart (+5 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_block.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_item/utils.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/_bius_items.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/_block_items.dart (+20 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/_color_list.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/aa_toolbar_item.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart (+185 -143)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar_item.dart (+31 -9)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/biuc_toolbar_item.dart (+13 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/checkbox_toolbar_item.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/more_toolbar_item.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/undo_redo_toolbar_item.dart (+2 -0)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)

📄 Description

Feature Preview

Screenshot 2024-02-27 at 22 43 06 Screenshot 2024-02-27 at 22 39 03

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/4754 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 2/27/2024 **Status:** ✅ Merged **Merged:** 2/28/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `ui_regression` --- ### 📝 Commits (10+) - [`df5c7f7`](https://github.com/AppFlowy-IO/AppFlowy/commit/df5c7f793d8b827871176792fccb962860d52312) fix: aa menu item selected status - [`07a4e0d`](https://github.com/AppFlowy-IO/AppFlowy/commit/07a4e0d6b472d346df2362ac3d303195209fa849) feat: support selecting word on iOS throught long pressing - [`53a2843`](https://github.com/AppFlowy-IO/AppFlowy/commit/53a2843bfb3d0678fd6c0012b5906fb7f9d5258b) chore: update editor version - [`55847ae`](https://github.com/AppFlowy-IO/AppFlowy/commit/55847ae56e8b50baf2f05ccbf72791d5a1ec532d) feat: update add block menu colors - [`27fd2bd`](https://github.com/AppFlowy-IO/AppFlowy/commit/27fd2bd7719d6d6154cf876449d9c616ddd94b64) feat: add scrollbar in bottom sheet - [`3d1404a`](https://github.com/AppFlowy-IO/AppFlowy/commit/3d1404a1661a6ba230138da67911889f3c2f06bc) fix: aa menu should not dimiss after changing block type - [`ac09b1c`](https://github.com/AppFlowy-IO/AppFlowy/commit/ac09b1c15fbf219cece07013f4d2173f9ce02b8b) fix: add link menu ui issues - [`e193971`](https://github.com/AppFlowy-IO/AppFlowy/commit/e1939712ab0281be70fc86becada2213160b51a0) feat: sync bius status - [`59e73a5`](https://github.com/AppFlowy-IO/AppFlowy/commit/59e73a55a5c67f704dd6a4784c8e59c5bb952718) Update frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar_item.dart - [`c5457ed`](https://github.com/AppFlowy-IO/AppFlowy/commit/c5457ed4b742dc8d52dc05e58bb7a51129fbb939) chore: update editor version ### 📊 Changes **17 files changed** (+277 additions, -169 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/show_mobile_bottom_sheet.dart` (+5 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_block.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_item/utils.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/_bius_items.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/_block_items.dart` (+20 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/_color_list.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/aa_toolbar_item.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart` (+185 -143) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar_item.dart` (+31 -9) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/biuc_toolbar_item.dart` (+13 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/checkbox_toolbar_item.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/more_toolbar_item.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/undo_redo_toolbar_item.dart` (+2 -0) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -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="521" alt="Screenshot 2024-02-27 at 22 43 06" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/b0ebf6fc-8587-4585-9c18-d2279a4e7bcb"> <img width="521" alt="Screenshot 2024-02-27 at 22 39 03" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/74a21e47-4edf-4a74-81a6-dc023e4989b8"> <!--- 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 - [ ] 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:23:10 +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#6425
No description provided.