[PR #1364] [MERGED] Adapt dark mode #4687

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1364
Author: @LucasXu0
Created: 10/25/2022
Status: Merged
Merged: 10/26/2022
Merged by: @LucasXu0

Base: mainHead: adapt_dart_mode


📝 Commits (10+)

  • 3fb997a feat: support dark mode for number-list and bulleted-list
  • 68da395 fix: disable toolbar hover color
  • cdee706 feat: refactor theme plugin, use themedata extension
  • dde50d3 feat: refactor theme plugin, use themedata extension
  • c5cea81 feat: integrate appflowy editor dark mode
  • 6a85303 feat: customize appflowy editor heading style
  • 8656cfe chore: add extension for themedata
  • 23a65bf feat: customize appflowy editor selection menu style
  • fac76ac feat: custom selection menu style
  • a702c06 feat: custom context menu style

📊 Changes

35 files changed (+921 additions, -534 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/doc/document_page.dart (+6 -1)
📝 frontend/app_flowy/lib/plugins/doc/editor_styles.dart (+51 -47)
📝 frontend/app_flowy/lib/plugins/doc/presentation/plugins/horizontal_rule_node_widget.dart (+4 -2)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+23 -45)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/code_block_node_widget.dart (+2 -2)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/horizontal_rule_node_widget.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/tex_block_node_widget.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart (+2 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/editor_state.dart (+4 -3)
frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/theme_extension.dart (+10 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_upload_widget.dart (+9 -3)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart (+12 -4)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/built_in_text_widget.dart (+0 -50)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/bulleted_list_text.dart (+25 -12)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart (+23 -13)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/flowy_rich_text.dart (+5 -4)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/heading_text.dart (+18 -2)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/number_list_text.dart (+24 -8)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/quoted_text.dart (+25 -7)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart (+11 -8)

...and 15 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/1364 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 10/25/2022 **Status:** ✅ Merged **Merged:** 10/26/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `adapt_dart_mode` --- ### 📝 Commits (10+) - [`3fb997a`](https://github.com/AppFlowy-IO/AppFlowy/commit/3fb997af840656bd66d9756ae7c5a21d51f2b242) feat: support dark mode for number-list and bulleted-list - [`68da395`](https://github.com/AppFlowy-IO/AppFlowy/commit/68da3955c1bda2f245688896c584fff41ae69dad) fix: disable toolbar hover color - [`cdee706`](https://github.com/AppFlowy-IO/AppFlowy/commit/cdee706f46249507876a1e7eff67b3edad61fdc6) feat: refactor theme plugin, use themedata extension - [`dde50d3`](https://github.com/AppFlowy-IO/AppFlowy/commit/dde50d32d6fa854b2c1710ea56d3aeaca67e7e55) feat: refactor theme plugin, use themedata extension - [`c5cea81`](https://github.com/AppFlowy-IO/AppFlowy/commit/c5cea81be2cddf2b13ee274b2b3b6d039210d625) feat: integrate appflowy editor dark mode - [`6a85303`](https://github.com/AppFlowy-IO/AppFlowy/commit/6a853036a56c84bdb7fd931b07a564831b451446) feat: customize appflowy editor heading style - [`8656cfe`](https://github.com/AppFlowy-IO/AppFlowy/commit/8656cfeb1ec833274bdd6afd1e7475ce3d30767e) chore: add extension for themedata - [`23a65bf`](https://github.com/AppFlowy-IO/AppFlowy/commit/23a65bfa2a9c714be763ef1af4564c757d586a02) feat: customize appflowy editor selection menu style - [`fac76ac`](https://github.com/AppFlowy-IO/AppFlowy/commit/fac76ac5b812be6ede96017b4ae97a40a0d32c45) feat: custom selection menu style - [`a702c06`](https://github.com/AppFlowy-IO/AppFlowy/commit/a702c06dc8ea947ae1e519f13438a34f3cd38e06) feat: custom context menu style ### 📊 Changes **35 files changed** (+921 additions, -534 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/doc/document_page.dart` (+6 -1) 📝 `frontend/app_flowy/lib/plugins/doc/editor_styles.dart` (+51 -47) 📝 `frontend/app_flowy/lib/plugins/doc/presentation/plugins/horizontal_rule_node_widget.dart` (+4 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+23 -45) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/code_block_node_widget.dart` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/horizontal_rule_node_widget.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/tex_block_node_widget.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart` (+2 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/editor_state.dart` (+4 -3) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/theme_extension.dart` (+10 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_upload_widget.dart` (+9 -3) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart` (+12 -4) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/built_in_text_widget.dart` (+0 -50) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/bulleted_list_text.dart` (+25 -12) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart` (+23 -13) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/flowy_rich_text.dart` (+5 -4) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/heading_text.dart` (+18 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/number_list_text.dart` (+24 -8) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/quoted_text.dart` (+25 -7) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart` (+11 -8) _...and 15 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 22:15:22 +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#4687
No description provided.