[PR #805] [CLOSED] Feat/move dart code into src #4357

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/805
Author: @LucasXu0
Created: 8/10/2022
Status: Closed

Base: mainHead: feat/move_dart_code_into_src


📝 Commits (10+)

  • 1f10e70 fix: enter key does not be repsonsed when the text style is null
  • 88f20e8 feature: MouseCursor for expanding row #687
  • 00f6e23 feat: handle triple tap
  • 06153be feat: add default impl for image node
  • 3a95c93 fix: tooltip for open row as page
  • c129cad fix: unnecessary import
  • 5102a38 chore: borad ui
  • 255c103 chore: config board ui
  • 2a8b3ae chore: update board layout, support footer and header
  • 7c27060 chore: add overlap dragTarget interceptor

📊 Changes

380 files changed (+10999 additions, -1370 deletions)

View changed files

📝 .github/workflows/ci.yaml (+1 -1)
📝 .github/workflows/dart_lint.yml (+1 -1)
📝 .github/workflows/dart_test.yml (+1 -1)
📝 .github/workflows/release.yml (+2 -2)
📝 .github/workflows/rust_lint.yml (+1 -1)
📝 frontend/app_flowy/assets/translations/en.json (+3 -2)
📝 frontend/app_flowy/lib/plugins/blank/blank.dart (+3 -2)
📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+0 -0)
📝 frontend/app_flowy/lib/plugins/board/board.dart (+4 -4)
frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+161 -0)
📝 frontend/app_flowy/lib/plugins/doc/application/doc_bloc.dart (+14 -8)
📝 frontend/app_flowy/lib/plugins/doc/application/doc_service.dart (+0 -0)
📝 frontend/app_flowy/lib/plugins/doc/application/prelude.dart (+0 -0)
📝 frontend/app_flowy/lib/plugins/doc/application/share_bloc.dart (+7 -4)
📝 frontend/app_flowy/lib/plugins/doc/application/share_service.dart (+0 -0)
📝 frontend/app_flowy/lib/plugins/doc/document.dart (+24 -18)
📝 frontend/app_flowy/lib/plugins/doc/document_page.dart (+14 -8)
📝 frontend/app_flowy/lib/plugins/doc/presentation/banner.dart (+13 -5)
📝 frontend/app_flowy/lib/plugins/doc/presentation/style_widgets.dart (+0 -0)
📝 frontend/app_flowy/lib/plugins/doc/presentation/toolbar/check_button.dart (+0 -0)

...and 80 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/805 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/10/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/move_dart_code_into_src` --- ### 📝 Commits (10+) - [`1f10e70`](https://github.com/AppFlowy-IO/AppFlowy/commit/1f10e7049c928fbc3a73c13f37a5819d267548fe) fix: enter key does not be repsonsed when the text style is null - [`88f20e8`](https://github.com/AppFlowy-IO/AppFlowy/commit/88f20e8f93741e34320cb10682af04dc3fb2ce5f) feature: MouseCursor for expanding row #687 - [`00f6e23`](https://github.com/AppFlowy-IO/AppFlowy/commit/00f6e231b0cd6c8491b42c41907e7e8b9b06c78a) feat: handle triple tap - [`06153be`](https://github.com/AppFlowy-IO/AppFlowy/commit/06153befd4c923a9e124e8f76d4ccf545d279ccd) feat: add default impl for image node - [`3a95c93`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a95c93cabf1911931cd51db42c4bd08043a4471) fix: tooltip for open row as page - [`c129cad`](https://github.com/AppFlowy-IO/AppFlowy/commit/c129cad046a5fedbb09ade3820bd324afd0ec8d3) fix: unnecessary import - [`5102a38`](https://github.com/AppFlowy-IO/AppFlowy/commit/5102a3807b6042e46b5135fe51123336c9f9a01a) chore: borad ui - [`255c103`](https://github.com/AppFlowy-IO/AppFlowy/commit/255c1037f6541e270be87096303af5fcee10608c) chore: config board ui - [`2a8b3ae`](https://github.com/AppFlowy-IO/AppFlowy/commit/2a8b3aeb45e47158065f64941252c50c6940691d) chore: update board layout, support footer and header - [`7c27060`](https://github.com/AppFlowy-IO/AppFlowy/commit/7c270607d0bd6e7f08505a8d3d778c17bebf2882) chore: add overlap dragTarget interceptor ### 📊 Changes **380 files changed** (+10999 additions, -1370 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yaml` (+1 -1) 📝 `.github/workflows/dart_lint.yml` (+1 -1) 📝 `.github/workflows/dart_test.yml` (+1 -1) 📝 `.github/workflows/release.yml` (+2 -2) 📝 `.github/workflows/rust_lint.yml` (+1 -1) 📝 `frontend/app_flowy/assets/translations/en.json` (+3 -2) 📝 `frontend/app_flowy/lib/plugins/blank/blank.dart` (+3 -2) 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+0 -0) 📝 `frontend/app_flowy/lib/plugins/board/board.dart` (+4 -4) ➕ `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+161 -0) 📝 `frontend/app_flowy/lib/plugins/doc/application/doc_bloc.dart` (+14 -8) 📝 `frontend/app_flowy/lib/plugins/doc/application/doc_service.dart` (+0 -0) 📝 `frontend/app_flowy/lib/plugins/doc/application/prelude.dart` (+0 -0) 📝 `frontend/app_flowy/lib/plugins/doc/application/share_bloc.dart` (+7 -4) 📝 `frontend/app_flowy/lib/plugins/doc/application/share_service.dart` (+0 -0) 📝 `frontend/app_flowy/lib/plugins/doc/document.dart` (+24 -18) 📝 `frontend/app_flowy/lib/plugins/doc/document_page.dart` (+14 -8) 📝 `frontend/app_flowy/lib/plugins/doc/presentation/banner.dart` (+13 -5) 📝 `frontend/app_flowy/lib/plugins/doc/presentation/style_widgets.dart` (+0 -0) 📝 `frontend/app_flowy/lib/plugins/doc/presentation/toolbar/check_button.dart` (+0 -0) _...and 80 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 21:37:27 +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#4357
No description provided.