[PR #774] [MERGED] Feat/board UI #4332

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/774
Author: @appflowy
Created: 8/5/2022
Status: Merged
Merged: 8/8/2022
Merged by: @appflowy

Base: mainHead: feat/board_ui


📝 Commits (10+)

  • 516e894 chore: borad ui
  • a4b4b20 chore: config board ui
  • dbc5de2 chore: update board layout, support footer and header
  • 9ea4c8b chore: add overlap dragTarget interceptor
  • e8dad2e chore: update
  • 146cc5c fix: fix some bugs
  • 20f34dc Merge branch 'main' into feat/board_ui_temp
  • c25237c fix: reorder bugs
  • a0d7f11 fix: invalid drag start index
  • 3977925 chore: add documentation

📊 Changes

158 files changed (+8708 additions, -5 deletions)

View changed files

📝 .github/workflows/dart_lint.yml (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/board/board.dart (+1 -1)
frontend/app_flowy/packages/appflowy_board/.gitignore (+30 -0)
frontend/app_flowy/packages/appflowy_board/.metadata (+10 -0)
frontend/app_flowy/packages/appflowy_board/CHANGELOG.md (+14 -0)
frontend/app_flowy/packages/appflowy_board/LICENSE (+661 -0)
frontend/app_flowy/packages/appflowy_board/README.md (+86 -0)
frontend/app_flowy/packages/appflowy_board/analysis_options.yaml (+4 -0)
frontend/app_flowy/packages/appflowy_board/example/.gitignore (+49 -0)
frontend/app_flowy/packages/appflowy_board/example/README.md (+16 -0)
frontend/app_flowy/packages/appflowy_board/example/analysis_options.yaml (+29 -0)
frontend/app_flowy/packages/appflowy_board/example/android/.gitignore (+13 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/build.gradle (+71 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/src/debug/AndroidManifest.xml (+8 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/AndroidManifest.xml (+34 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/kotlin/com/appflowy/board/example/MainActivity.kt (+6 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/drawable-v21/launch_background.xml (+12 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/drawable/launch_background.xml (+12 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png (+0 -0)
frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png (+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/774 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/5/2022 **Status:** ✅ Merged **Merged:** 8/8/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/board_ui` --- ### 📝 Commits (10+) - [`516e894`](https://github.com/AppFlowy-IO/AppFlowy/commit/516e894c6abd706ff54ed2f03e506870ab2281ec) chore: borad ui - [`a4b4b20`](https://github.com/AppFlowy-IO/AppFlowy/commit/a4b4b20cfc95052622693db8d248d0fc03f3a42c) chore: config board ui - [`dbc5de2`](https://github.com/AppFlowy-IO/AppFlowy/commit/dbc5de29685b828c2ec3d3e9b1148740f5767bbb) chore: update board layout, support footer and header - [`9ea4c8b`](https://github.com/AppFlowy-IO/AppFlowy/commit/9ea4c8b2605720d09cfb93c3c4bb3422a7243d8c) chore: add overlap dragTarget interceptor - [`e8dad2e`](https://github.com/AppFlowy-IO/AppFlowy/commit/e8dad2ef030d12bc5d6fcbdd1b355d51fc303e39) chore: update - [`146cc5c`](https://github.com/AppFlowy-IO/AppFlowy/commit/146cc5c5e9abfb97c97a588766aa2cce81b7ca60) fix: fix some bugs - [`20f34dc`](https://github.com/AppFlowy-IO/AppFlowy/commit/20f34dc9529a53c9a4cc15eec4a14a6e0e64e608) Merge branch 'main' into feat/board_ui_temp - [`c25237c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c25237c7671a9286f3e90e39399cfae546454700) fix: reorder bugs - [`a0d7f11`](https://github.com/AppFlowy-IO/AppFlowy/commit/a0d7f114c02b95ccbe5c09c77022edcc4108bd18) fix: invalid drag start index - [`3977925`](https://github.com/AppFlowy-IO/AppFlowy/commit/3977925e8a9c87afabbc0294cf5573ca51b5b820) chore: add documentation ### 📊 Changes **158 files changed** (+8708 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dart_lint.yml` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/board/board.dart` (+1 -1) ➕ `frontend/app_flowy/packages/appflowy_board/.gitignore` (+30 -0) ➕ `frontend/app_flowy/packages/appflowy_board/.metadata` (+10 -0) ➕ `frontend/app_flowy/packages/appflowy_board/CHANGELOG.md` (+14 -0) ➕ `frontend/app_flowy/packages/appflowy_board/LICENSE` (+661 -0) ➕ `frontend/app_flowy/packages/appflowy_board/README.md` (+86 -0) ➕ `frontend/app_flowy/packages/appflowy_board/analysis_options.yaml` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/.gitignore` (+49 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/README.md` (+16 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/analysis_options.yaml` (+29 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/.gitignore` (+13 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/build.gradle` (+71 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/src/debug/AndroidManifest.xml` (+8 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/AndroidManifest.xml` (+34 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/kotlin/com/appflowy/board/example/MainActivity.kt` (+6 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/drawable-v21/launch_background.xml` (+12 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/drawable/launch_background.xml` (+12 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png` (+0 -0) ➕ `frontend/app_flowy/packages/appflowy_board/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png` (+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:20 +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#4332
No description provided.