[PR #993] [MERGED] Feat/board documentation #4482

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/993
Author: @appflowy
Created: 9/6/2022
Status: Merged
Merged: 9/6/2022
Merged by: @appflowy

Base: mainHead: feat/board_documentation


📝 Commits (4)

  • c7fdfb4 chore: update documentation
  • 8f5569a chore: update doc
  • b532131 chore: fix dart doc warnings
  • a21050b chore: update appflowy_baord documentation

📊 Changes

23 files changed (+907 additions, -753 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+25 -25)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+19 -22)
📝 frontend/app_flowy/packages/appflowy_board/CHANGELOG.md (+3 -0)
📝 frontend/app_flowy/packages/appflowy_board/README.md (+80 -11)
📝 frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart (+59 -69)
📝 frontend/app_flowy/packages/appflowy_board/example/lib/single_board_list_example.dart (+6 -6)
📝 frontend/app_flowy/packages/appflowy_board/lib/appflowy_board.dart (+3 -2)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart (+158 -136)
frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column_data.dart (+0 -192)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_data.dart (+169 -101)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_group/group.dart (+57 -55)
frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_group/group_data.dart (+194 -0)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_target_interceptor.dart (+5 -5)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/reorder_flex.dart (+5 -5)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_phantom/phantom_controller.dart (+89 -88)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_phantom/phantom_state.dart (+20 -20)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/card.dart (+4 -4)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/footer.dart (+4 -4)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/header.dart (+4 -4)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/widgets.dart (+0 -0)

...and 3 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/993 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/6/2022 **Status:** ✅ Merged **Merged:** 9/6/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/board_documentation` --- ### 📝 Commits (4) - [`c7fdfb4`](https://github.com/AppFlowy-IO/AppFlowy/commit/c7fdfb40909d04edc5197af4237aedfe0ec27ca7) chore: update documentation - [`8f5569a`](https://github.com/AppFlowy-IO/AppFlowy/commit/8f5569a0121237458da0b878062121b94b1f86dc) chore: update doc - [`b532131`](https://github.com/AppFlowy-IO/AppFlowy/commit/b5321319cc08b5a813a23f9ac7608ec757504c7f) chore: fix dart doc warnings - [`a21050b`](https://github.com/AppFlowy-IO/AppFlowy/commit/a21050b5941ec636c46ccf8c75d0f5a21fbe3ac8) chore: update appflowy_baord documentation ### 📊 Changes **23 files changed** (+907 additions, -753 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+25 -25) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+19 -22) 📝 `frontend/app_flowy/packages/appflowy_board/CHANGELOG.md` (+3 -0) 📝 `frontend/app_flowy/packages/appflowy_board/README.md` (+80 -11) 📝 `frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart` (+59 -69) 📝 `frontend/app_flowy/packages/appflowy_board/example/lib/single_board_list_example.dart` (+6 -6) 📝 `frontend/app_flowy/packages/appflowy_board/lib/appflowy_board.dart` (+3 -2) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart` (+158 -136) ➖ `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column_data.dart` (+0 -192) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_data.dart` (+169 -101) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_group/group.dart` (+57 -55) ➕ `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_group/group_data.dart` (+194 -0) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_target_interceptor.dart` (+5 -5) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/reorder_flex.dart` (+5 -5) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_phantom/phantom_controller.dart` (+89 -88) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_phantom/phantom_state.dart` (+20 -20) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/card.dart` (+4 -4) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/footer.dart` (+4 -4) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/header.dart` (+4 -4) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/styled_widgets/widgets.dart` (+0 -0) _...and 3 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:38:00 +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#4482
No description provided.