[PR #1495] [MERGED] Customize Font Size In AppFlowy #1479 #4775

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1495
Author: @LucasXu0
Created: 11/28/2022
Status: Merged
Merged: 11/29/2022
Merged by: @LucasXu0

Base: mainHead: customize_font_size


📝 Commits (10+)

  • 0ba26e0 feat: Customize Font Size In AppFlowy #1479
  • 37b1191 feat: Customize Font Size In AppFlowy #1479
  • 6d6e619 feat: Customize Font Size In AppFlowy #1479
  • d75645c fix: remove the unnecessary text style update
  • 04e14c6 fix: transparent color should be treated as a highlight color
  • a162b02 feat: convert provider to cubit #1479
  • 14ac2db Merge remote-tracking branch 'origin/main' into customize_font_size
  • 0e55cd0 chore: fix typo
  • 52ba0c0 fix: the cursor shows sometimes when tapping the checkbox
  • 43031b5 feat: update bold text style

📊 Changes

11 files changed (+408 additions, -166 deletions)

View changed files

📝 frontend/app_flowy/assets/translations/en.json (+6 -0)
📝 frontend/app_flowy/lib/plugins/document/document.dart (+46 -144)
📝 frontend/app_flowy/lib/plugins/document/editor_styles.dart (+38 -14)
frontend/app_flowy/lib/plugins/document/presentation/more/cubit/document_appearance_cubit.dart (+40 -0)
frontend/app_flowy/lib/plugins/document/presentation/more/font_size_switcher.dart (+89 -0)
frontend/app_flowy/lib/plugins/document/presentation/more/more_button.dart (+35 -0)
frontend/app_flowy/lib/plugins/document/presentation/share/share_button.dart (+132 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart (+3 -1)
📝 frontend/app_flowy/packages/flowy_infra/lib/image.dart (+17 -6)

📄 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/1495 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 11/28/2022 **Status:** ✅ Merged **Merged:** 11/29/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `customize_font_size` --- ### 📝 Commits (10+) - [`0ba26e0`](https://github.com/AppFlowy-IO/AppFlowy/commit/0ba26e0a8496de8d8ceba8b299ceab55e3b472d2) feat: Customize Font Size In AppFlowy #1479 - [`37b1191`](https://github.com/AppFlowy-IO/AppFlowy/commit/37b119172bb2a25c90ad59b0fec464d27aa004e2) feat: Customize Font Size In AppFlowy #1479 - [`6d6e619`](https://github.com/AppFlowy-IO/AppFlowy/commit/6d6e61956a5412d08a627e19ebc76a888f028fcb) feat: Customize Font Size In AppFlowy #1479 - [`d75645c`](https://github.com/AppFlowy-IO/AppFlowy/commit/d75645c4bceb3ed6db2269f024d4107ebf8fefe2) fix: remove the unnecessary text style update - [`04e14c6`](https://github.com/AppFlowy-IO/AppFlowy/commit/04e14c6bbae19255ccb2ff33496aa4394d87bf67) fix: transparent color should be treated as a highlight color - [`a162b02`](https://github.com/AppFlowy-IO/AppFlowy/commit/a162b0247633b8b82eef07e2323d8360829e9f16) feat: convert provider to cubit #1479 - [`14ac2db`](https://github.com/AppFlowy-IO/AppFlowy/commit/14ac2db06d742b509ddea2f2a7e2b76b15e779d6) Merge remote-tracking branch 'origin/main' into customize_font_size - [`0e55cd0`](https://github.com/AppFlowy-IO/AppFlowy/commit/0e55cd07a4267731b73651b635b838dead03ac39) chore: fix typo - [`52ba0c0`](https://github.com/AppFlowy-IO/AppFlowy/commit/52ba0c0092616d25056c6738c80f0c39ca6959cd) fix: the cursor shows sometimes when tapping the checkbox - [`43031b5`](https://github.com/AppFlowy-IO/AppFlowy/commit/43031b50eb3c2718843349b6c7b9a3bb2d2acf4f) feat: update bold text style ### 📊 Changes **11 files changed** (+408 additions, -166 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/assets/translations/en.json` (+6 -0) 📝 `frontend/app_flowy/lib/plugins/document/document.dart` (+46 -144) 📝 `frontend/app_flowy/lib/plugins/document/editor_styles.dart` (+38 -14) ➕ `frontend/app_flowy/lib/plugins/document/presentation/more/cubit/document_appearance_cubit.dart` (+40 -0) ➕ `frontend/app_flowy/lib/plugins/document/presentation/more/font_size_switcher.dart` (+89 -0) ➕ `frontend/app_flowy/lib/plugins/document/presentation/more/more_button.dart` (+35 -0) ➕ `frontend/app_flowy/lib/plugins/document/presentation/share/share_button.dart` (+132 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/toolbar/toolbar_item.dart` (+3 -1) 📝 `frontend/app_flowy/packages/flowy_infra/lib/image.dart` (+17 -6) </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:47 +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#4775
No description provided.