[PR #1054] [MERGED] feat: implement theme customizer #12932

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

📋 Pull Request Information

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

Base: mainHead: feature/theme


📝 Commits (6)

  • 68997a9 feat: implement theme customizer
  • 8137769 fix: add simple test for l10n
  • 5c13b32 Merge remote-tracking branch 'origin/main' into feature/theme
  • a371cf3 test: add single/double/triple tap test
  • 5bb5337 feat: 0.0.5 release preparation
  • 5b48224 fix: analyze problem

📊 Changes

91 files changed (+3265 additions, -862 deletions)

View changed files

📝 frontend/app_flowy/packages/appflowy_editor/CHANGELOG.md (+7 -0)
📝 frontend/app_flowy/packages/appflowy_editor/README.md (+16 -3)
📝 frontend/app_flowy/packages/appflowy_editor/documentation/customizing.md (+101 -1)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_theme_after.png (+0 -0)
frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_theme_before.png (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/documentation/testing.md (+4 -4)
📝 frontend/app_flowy/packages/appflowy_editor/example/assets/example.json (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+77 -9)
📝 frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml (+3 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart (+2 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_ca.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_de_DE.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_en.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_es_VE.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_fr_CA.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_fr_FR.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_hu_HU.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_id_ID.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_it_IT.arb (+35 -0)
frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_ja_JP.arb (+35 -0)

...and 71 more files

📄 Description

#1053


🔄 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/1054 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 9/15/2022 **Status:** ✅ Merged **Merged:** 9/16/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feature/theme` --- ### 📝 Commits (6) - [`68997a9`](https://github.com/AppFlowy-IO/AppFlowy/commit/68997a9c934c8d17199ff08791ae00e00007243e) feat: implement theme customizer - [`8137769`](https://github.com/AppFlowy-IO/AppFlowy/commit/8137769edd0bad644cd46a8a483c7cede61fe186) fix: add simple test for l10n - [`5c13b32`](https://github.com/AppFlowy-IO/AppFlowy/commit/5c13b324ecaa6873a98e2adb426b5d6cca35c2cf) Merge remote-tracking branch 'origin/main' into feature/theme - [`a371cf3`](https://github.com/AppFlowy-IO/AppFlowy/commit/a371cf3a7c2645623819f2c220c7ac39fe07d6ac) test: add single/double/triple tap test - [`5bb5337`](https://github.com/AppFlowy-IO/AppFlowy/commit/5bb5337de855a368fdcd82a439af3ffeaff592ee) feat: 0.0.5 release preparation - [`5b48224`](https://github.com/AppFlowy-IO/AppFlowy/commit/5b482248ec30a0cfe1609e2da09172424411f231) fix: analyze problem ### 📊 Changes **91 files changed** (+3265 additions, -862 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/packages/appflowy_editor/CHANGELOG.md` (+7 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/README.md` (+16 -3) 📝 `frontend/app_flowy/packages/appflowy_editor/documentation/customizing.md` (+101 -1) ➕ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_theme_after.png` (+0 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/documentation/images/customizing_a_theme_before.png` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/documentation/testing.md` (+4 -4) 📝 `frontend/app_flowy/packages/appflowy_editor/example/assets/example.json` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+77 -9) 📝 `frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml` (+3 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart` (+2 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_ca.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_de_DE.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_en.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_es_VE.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_fr_CA.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_fr_FR.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_hu_HU.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_id_ID.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_it_IT.arb` (+35 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/l10n/intl_ja_JP.arb` (+35 -0) _...and 71 more files_ </details> ### 📄 Description #1053 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-24 21:44:38 +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#12932
No description provided.