[PR #7088] [MERGED] feat: auto-dismiss collapsed handle on Android if no interaction occurs #7726

Closed
opened 2026-03-23 23:20:56 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7088
Author: @LucasXu0
Created: 12/30/2024
Status: Merged
Merged: 12/30/2024
Merged by: @LucasXu0

Base: mainHead: android_collasped_handle


📝 Commits (7)

  • d98d8a5 feat: support auto-dismiss collapsed handle on Android
  • f12019c fix: hit test area of collasepd handle is too big
  • 8e1a30b chore: upgrade appflowy_editor
  • 4995a05 fix: simple table issues on mobile
  • 8391621 feat: highlight cell after insertion
  • 1de89a0 test: text color and cell background color test
  • d63dbbc fix: sign_in_page_settings_test

📊 Changes

11 files changed (+514 additions, -25 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/settings/sign_in_page_settings_test.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+4 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_operations/simple_table_map_operation.dart (+241 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/simple_table_more_action_popup.dart (+54 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_style.dart (+2 -1)
📝 frontend/appflowy_flutter/macos/Podfile.lock (+21 -21)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
📝 frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_delete_operation_test.dart (+62 -0)
📝 frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_duplicate_operation_test.dart (+64 -0)
📝 frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_insert_operation_test.dart (+62 -0)

📄 Description

Feature Preview

  • auto-dismiss collapsed handle on Android if no interaction occurs
  • optimize hit test area of table action button and collapsed handle
  • upgrade appflowy_editor to latest version

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/7088 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 12/30/2024 **Status:** ✅ Merged **Merged:** 12/30/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `android_collasped_handle` --- ### 📝 Commits (7) - [`d98d8a5`](https://github.com/AppFlowy-IO/AppFlowy/commit/d98d8a574e5f6acfb8e9f6f43ef7829247ab3d00) feat: support auto-dismiss collapsed handle on Android - [`f12019c`](https://github.com/AppFlowy-IO/AppFlowy/commit/f12019c3c767879110fc08326756ee7b5c6e5bdc) fix: hit test area of collasepd handle is too big - [`8e1a30b`](https://github.com/AppFlowy-IO/AppFlowy/commit/8e1a30bfdbba4587de1d8e6faa0e8df79f323691) chore: upgrade appflowy_editor - [`4995a05`](https://github.com/AppFlowy-IO/AppFlowy/commit/4995a052c5e4908834d4371e2183e7e6d389d721) fix: simple table issues on mobile - [`8391621`](https://github.com/AppFlowy-IO/AppFlowy/commit/8391621c6d08ee776875c818dca6835a544a233c) feat: highlight cell after insertion - [`1de89a0`](https://github.com/AppFlowy-IO/AppFlowy/commit/1de89a0d57b49b546e7279acb0df3bee28b991e6) test: text color and cell background color test - [`d63dbbc`](https://github.com/AppFlowy-IO/AppFlowy/commit/d63dbbc292f170fcd422dfc8807a4a85c68c3135) fix: sign_in_page_settings_test ### 📊 Changes **11 files changed** (+514 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/settings/sign_in_page_settings_test.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+4 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_operations/simple_table_map_operation.dart` (+241 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/simple_table_more_action_popup.dart` (+54 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_style.dart` (+2 -1) 📝 `frontend/appflowy_flutter/macos/Podfile.lock` (+21 -21) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) 📝 `frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_delete_operation_test.dart` (+62 -0) 📝 `frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_duplicate_operation_test.dart` (+64 -0) 📝 `frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_insert_operation_test.dart` (+62 -0) </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 - [x] auto-dismiss collapsed handle on Android if no interaction occurs - [x] optimize hit test area of table action button and collapsed handle - [x] upgrade appflowy_editor to latest version <!--- 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. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] 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:20:56 +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#7726
No description provided.