[PR #798] [MERGED] update text style and document style. #4349

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/798
Author: @LucasXu0
Created: 8/9/2022
Status: Merged
Merged: 8/9/2022
Merged by: @LucasXu0

Base: mainHead: feat/text_style


📝 Commits (6)

  • 06d11a9 feat: lineThrough and underline can coexist
  • fdbecd7 fix: typo
  • f4a3176 feat: support rendering text background color and text color
  • b9c0c12 feat: support more command + x shortcut
  • 4464f2a feat: make the text node widget align center.
  • 6f32f74 fix: delete style widget error

📊 Changes

14 files changed (+204 additions, -116 deletions)

View changed files

📝 frontend/app_flowy/packages/flowy_editor/example/assets/example.json (+5 -1)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/editor/editor_entry.dart (+1 -1)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/bulleted_list_text.dart (+12 -10)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/checkbox_text.dart (+21 -20)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart (+0 -16)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/heading_text.dart (+16 -19)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/number_list_text.dart (+11 -10)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/quoted_text.dart (+13 -12)
frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/rich_text.dart (+68 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/rich_text_style.dart (+41 -20)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart (+0 -5)
📝 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/enter_without_shift_in_text_node_handler.dart (+3 -1)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/update_text_style_by_command_x_handler.dart (+12 -0)

📄 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/798 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/9/2022 **Status:** ✅ Merged **Merged:** 8/9/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feat/text_style` --- ### 📝 Commits (6) - [`06d11a9`](https://github.com/AppFlowy-IO/AppFlowy/commit/06d11a91d14b38fab363e95743e19ae29ba6acd0) feat: lineThrough and underline can coexist - [`fdbecd7`](https://github.com/AppFlowy-IO/AppFlowy/commit/fdbecd7f100bb1a8009ee2085ee280243d3b5dd8) fix: typo - [`f4a3176`](https://github.com/AppFlowy-IO/AppFlowy/commit/f4a31768cbd2f15bcec0f85765b78a15002b112b) feat: support rendering text background color and text color - [`b9c0c12`](https://github.com/AppFlowy-IO/AppFlowy/commit/b9c0c1209ac3114d78552d8bd03fd65c52079675) feat: support more command + x shortcut - [`4464f2a`](https://github.com/AppFlowy-IO/AppFlowy/commit/4464f2abfe9c786bc11ed2cac1e90bdf6a4adcc2) feat: make the text node widget align center. - [`6f32f74`](https://github.com/AppFlowy-IO/AppFlowy/commit/6f32f749bc1051ad43816d17a168f82fb10a8724) fix: delete style widget error ### 📊 Changes **14 files changed** (+204 additions, -116 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/packages/flowy_editor/example/assets/example.json` (+5 -1) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/editor/editor_entry.dart` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/bulleted_list_text.dart` (+12 -10) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/checkbox_text.dart` (+21 -20) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart` (+0 -16) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/heading_text.dart` (+16 -19) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/number_list_text.dart` (+11 -10) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/quoted_text.dart` (+13 -12) ➕ `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/rich_text.dart` (+68 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/rich_text_style.dart` (+41 -20) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart` (+0 -5) 📝 `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/enter_without_shift_in_text_node_handler.dart` (+3 -1) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/internal_key_event_handlers/update_text_style_by_command_x_handler.dart` (+12 -0) </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:24 +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#4349
No description provided.