[PR #752] [MERGED] feat: implement toolbar UI part. #4316

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/752
Author: @LucasXu0
Created: 8/1/2022
Status: Merged
Merged: 8/2/2022
Merged by: @appflowy

Base: feat/flowy_editorHead: feat/flowy_editor_input_service


📝 Commits (5)

  • 934cb6a feat: implement toolbar UI part.
  • 846a273 feat: rename toolbar
  • 06cab94 chore: delete unused import, and sort the imports.
  • 159fe63 feat: implement edit text style by command + x
  • 5ecfc4f feat: refactor the text editing code

📊 Changes

22 files changed (+526 additions, -246 deletions)

View changed files

frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/bold.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/bulleted_list.svg (+8 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/divider.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/italic.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/number_list.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/quote.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/strikethrough.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/underline.svg (+4 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/main.dart (+26 -26)
frontend/app_flowy/packages/flowy_editor/lib/extensions/text_node_extensions.dart (+88 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/operation/transaction_builder.dart (+2 -1)
frontend/app_flowy/packages/flowy_editor/lib/render/selection/floating_shortcut_widget.dart (+0 -58)
frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart (+217 -0)
frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart (+49 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/editor_service.dart (+4 -11)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/delete_text_handler.dart (+0 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/update_text_style_by_command_x_handler.dart (+11 -59)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/selection_service.dart (+33 -20)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/service.dart (+7 -10)
frontend/app_flowy/packages/flowy_editor/lib/service/shortcut_service.dart (+0 -60)

...and 2 more files

📄 Description

#634


🔄 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/752 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/1/2022 **Status:** ✅ Merged **Merged:** 8/2/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `feat/flowy_editor` ← **Head:** `feat/flowy_editor_input_service` --- ### 📝 Commits (5) - [`934cb6a`](https://github.com/AppFlowy-IO/AppFlowy/commit/934cb6ab6b58afa4b1d445afb302c49a2a93b11d) feat: implement toolbar UI part. - [`846a273`](https://github.com/AppFlowy-IO/AppFlowy/commit/846a273de8ec4e3f76c56ff880f4e7b53329f520) feat: rename toolbar - [`06cab94`](https://github.com/AppFlowy-IO/AppFlowy/commit/06cab949f2a910b4d26ddbe40d94bd3ea0b70d28) chore: delete unused import, and sort the imports. - [`159fe63`](https://github.com/AppFlowy-IO/AppFlowy/commit/159fe63575be2521d87e1f636838564c087bd4a9) feat: implement edit text style by command + x - [`5ecfc4f`](https://github.com/AppFlowy-IO/AppFlowy/commit/5ecfc4ff2e825e96a2a84025981b11b4fb69c6ac) feat: refactor the text editing code ### 📊 Changes **22 files changed** (+526 additions, -246 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/bold.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/bulleted_list.svg` (+8 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/divider.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/italic.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/number_list.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/quote.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/strikethrough.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/underline.svg` (+4 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/main.dart` (+26 -26) ➕ `frontend/app_flowy/packages/flowy_editor/lib/extensions/text_node_extensions.dart` (+88 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/operation/transaction_builder.dart` (+2 -1) ➖ `frontend/app_flowy/packages/flowy_editor/lib/render/selection/floating_shortcut_widget.dart` (+0 -58) ➕ `frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart` (+217 -0) ➕ `frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart` (+49 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/editor_service.dart` (+4 -11) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/delete_text_handler.dart` (+0 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/update_text_style_by_command_x_handler.dart` (+11 -59) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/selection_service.dart` (+33 -20) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/service.dart` (+7 -10) ➖ `frontend/app_flowy/packages/flowy_editor/lib/service/shortcut_service.dart` (+0 -60) _...and 2 more files_ </details> ### 📄 Description [#634](https://github.com/AppFlowy-IO/AppFlowy/issues/634) --- <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:16 +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#4316
No description provided.