[PR #760] [MERGED] feat: implement popup list service. #4322

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/760
Author: @LucasXu0
Created: 8/3/2022
Status: Merged
Merged: 8/4/2022
Merged by: @appflowy

Base: feat/flowy_editorHead: feat/toolbar_service


📝 Commits (7)

  • 8431218 Merge pull request #758 from AppFlowy-IO/feat/flowy_editor
  • a3bd9fd feat: expand rich text to handle gestures.
  • 35bafba feat: implement popup list service
  • 1166d03 feat: update selection position after updating text node style.
  • 58d656d feat: implement selectable popup list widget
  • eb7c65a feat: add empty document entry in example
  • 90fa131 fix: update the selection after render completed

📊 Changes

23 files changed (+458 additions, -35 deletions)

View changed files

frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/bullets.svg (+8 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/checkbox.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h1.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h2.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h3.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/number.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/text.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/code.svg (+4 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/main.dart (+40 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.lock (+7 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/editor_state.dart (+1 -3)
📝 frontend/app_flowy/packages/flowy_editor/lib/extensions/node_extensions.dart (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/infra/flowy_svg.dart (+10 -10)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart (+4 -1)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart (+16 -7)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/editor_service.dart (+1 -1)
frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/shortcut_handler.dart (+0 -12)
frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/slash_handler.dart (+300 -0)

...and 3 more files

📄 Description

No description provided


🔄 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/760 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/3/2022 **Status:** ✅ Merged **Merged:** 8/4/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `feat/flowy_editor` ← **Head:** `feat/toolbar_service` --- ### 📝 Commits (7) - [`8431218`](https://github.com/AppFlowy-IO/AppFlowy/commit/843121812c2ddbb07b60e930dc4241249c75f8a1) Merge pull request #758 from AppFlowy-IO/feat/flowy_editor - [`a3bd9fd`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3bd9fd0e1c854fee9265969a5b36bb0801538df) feat: expand rich text to handle gestures. - [`35bafba`](https://github.com/AppFlowy-IO/AppFlowy/commit/35bafbaadc55543a6b8a30e9cbe64c026db34949) feat: implement popup list service - [`1166d03`](https://github.com/AppFlowy-IO/AppFlowy/commit/1166d03b7558d08ef9039c33f282b065fe801af5) feat: update selection position after updating text node style. - [`58d656d`](https://github.com/AppFlowy-IO/AppFlowy/commit/58d656d9f4811d85233f26310d76928b5eedc820) feat: implement selectable popup list widget - [`eb7c65a`](https://github.com/AppFlowy-IO/AppFlowy/commit/eb7c65aa8b490c4b1852e6899d86872b6bbe060e) feat: add empty document entry in example - [`90fa131`](https://github.com/AppFlowy-IO/AppFlowy/commit/90fa1312f2b32142fda08397038287009b66616c) fix: update the selection after render completed ### 📊 Changes **23 files changed** (+458 additions, -35 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/bullets.svg` (+8 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/checkbox.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h1.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h2.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h3.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/number.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/text.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/code.svg` (+4 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/main.dart` (+40 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.lock` (+7 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/editor_state.dart` (+1 -3) 📝 `frontend/app_flowy/packages/flowy_editor/lib/extensions/node_extensions.dart` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/infra/flowy_svg.dart` (+10 -10) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart` (+4 -1) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart` (+16 -7) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/editor_service.dart` (+1 -1) ➖ `frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/shortcut_handler.dart` (+0 -12) ➕ `frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/slash_handler.dart` (+300 -0) _...and 3 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:37:18 +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#4322
No description provided.