[PR #1429] [MERGED] Refactor appflowy editor example #4731

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

📋 Pull Request Information

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

Base: mainHead: refactor_appflowy_editor_example


📝 Commits (9)

  • 17536fd feat: implement paste markdown text
  • 8a53abe chore: update version and documentation
  • 064ed16 feat: implement drawer and simple editor
  • 205b5f2 feat: implement save document to json
  • 9a908ab feat: implement save document to markdown
  • 853be71 feat: implement initalize editor from json and markdown
  • e20ce90 feat: implement theme customizer showcase
  • 9b56cbb fix: export error on Web platform
  • b6ad0ba chore: update changelog

📊 Changes

14 files changed (+422 additions, -42217 deletions)

View changed files

📝 frontend/app_flowy/packages/appflowy_editor/CHANGELOG.md (+2 -0)
📝 frontend/app_flowy/packages/appflowy_editor/README.md (+0 -4)
📝 frontend/app_flowy/packages/appflowy_editor/documentation/customizing.md (+0 -1)
frontend/app_flowy/packages/appflowy_editor/example/assets/big_document.json (+0 -41960)
📝 frontend/app_flowy/packages/appflowy_editor/example/assets/example.json (+4 -2)
frontend/app_flowy/packages/appflowy_editor/example/assets/images/icon.png (+0 -0)
frontend/app_flowy/packages/appflowy_editor/example/lib/home_page.dart (+328 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+2 -208)
frontend/app_flowy/packages/appflowy_editor/example/lib/pages/simple_editor.dart (+46 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml (+1 -2)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/core/document/document.dart (+4 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/style/editor_style.dart (+7 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart (+2 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart (+26 -39)

📄 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/1429 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 11/9/2022 **Status:** ✅ Merged **Merged:** 11/9/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `refactor_appflowy_editor_example` --- ### 📝 Commits (9) - [`17536fd`](https://github.com/AppFlowy-IO/AppFlowy/commit/17536fdecb91864d357477f26b796d1f81fe368e) feat: implement paste markdown text - [`8a53abe`](https://github.com/AppFlowy-IO/AppFlowy/commit/8a53abef3fdde8ae353bd29a39b0039f42581187) chore: update version and documentation - [`064ed16`](https://github.com/AppFlowy-IO/AppFlowy/commit/064ed16a7a8fdc1b0d408381320a65ca024c44aa) feat: implement drawer and simple editor - [`205b5f2`](https://github.com/AppFlowy-IO/AppFlowy/commit/205b5f2c217954aaf06e9d7a5f058dddabb73850) feat: implement save document to json - [`9a908ab`](https://github.com/AppFlowy-IO/AppFlowy/commit/9a908abfddc7b51b9f52c22327cdc92e5dd34965) feat: implement save document to markdown - [`853be71`](https://github.com/AppFlowy-IO/AppFlowy/commit/853be71bf57fac54643d26b46f1a8f0cf54f4f56) feat: implement initalize editor from json and markdown - [`e20ce90`](https://github.com/AppFlowy-IO/AppFlowy/commit/e20ce9052abc81e012320913c0ba3b537a8d3d06) feat: implement theme customizer showcase - [`9b56cbb`](https://github.com/AppFlowy-IO/AppFlowy/commit/9b56cbb64824851298b8218ac68753bbfb6d739c) fix: export error on Web platform - [`b6ad0ba`](https://github.com/AppFlowy-IO/AppFlowy/commit/b6ad0ba597648c34f4d1f55333b67958802cff44) chore: update changelog ### 📊 Changes **14 files changed** (+422 additions, -42217 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/packages/appflowy_editor/CHANGELOG.md` (+2 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/README.md` (+0 -4) 📝 `frontend/app_flowy/packages/appflowy_editor/documentation/customizing.md` (+0 -1) ➖ `frontend/app_flowy/packages/appflowy_editor/example/assets/big_document.json` (+0 -41960) 📝 `frontend/app_flowy/packages/appflowy_editor/example/assets/example.json` (+4 -2) ➕ `frontend/app_flowy/packages/appflowy_editor/example/assets/images/icon.png` (+0 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/example/lib/home_page.dart` (+328 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+2 -208) ➕ `frontend/app_flowy/packages/appflowy_editor/example/lib/pages/simple_editor.dart` (+46 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml` (+1 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/core/document/document.dart` (+4 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/style/editor_style.dart` (+7 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart` (+2 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart` (+26 -39) </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:34 +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#4731
No description provided.