[PR #5227] [MERGED] fix: kanban UX bugs #6717

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5227
Author: @richardshiue
Created: 4/30/2024
Status: Merged
Merged: 4/30/2024
Merged by: @richardshiue

Base: mainHead: fix/autoscroll


📝 Commits (3)

  • 8bed886 chore: improve title editing behavior
  • b25dfa1 chore: fix editable text field
  • 0d1a51a chore: fix autoscroll

📊 Changes

23 files changed (+183 additions, -159 deletions)

View changed files

📝 frontend/appflowy_flutter/android/app/src/main/Classes/binding.h (+2 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_add_row_test.dart (+33 -20)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_group_test.dart (+2 -2)
📝 frontend/appflowy_flutter/ios/Podfile.lock (+3 -9)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_controller.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/application/field/field_cell_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart (+49 -59)
📝 frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_hidden_groups.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_event_card.dart (+7 -4)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_page.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart (+9 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/layout/layout.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/calculations/calculations_row.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/footer/grid_footer.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/grid_header.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/row/row.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/tab_bar/desktop/tab_bar_header.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_skeleton/text_card_cell.dart (+46 -39)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_style_maps/desktop_board_card_cell_style.dart (+1 -1)

...and 3 more files

📄 Description

  • When not editing the title, wrap the title into two lines. When editing, show all the contents
  • improve text editing behavior. Titles will be forced to be single line
  • expand kanban board to full width
  • allow auto-scrolling when dragging a card to the edge of the kanban board.

resolves https://github.com/AppFlowy-IO/AppFlowy/issues/4979
resolves https://github.com/AppFlowy-IO/AppFlowy/issues/4666

Feature Preview


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/5227 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 4/30/2024 **Status:** ✅ Merged **Merged:** 4/30/2024 **Merged by:** [@richardshiue](https://github.com/richardshiue) **Base:** `main` ← **Head:** `fix/autoscroll` --- ### 📝 Commits (3) - [`8bed886`](https://github.com/AppFlowy-IO/AppFlowy/commit/8bed8863f0b3016f8d4f50be9ab66d22d44c321a) chore: improve title editing behavior - [`b25dfa1`](https://github.com/AppFlowy-IO/AppFlowy/commit/b25dfa13955c7faee1f0a2edaa3c77db0084d66f) chore: fix editable text field - [`0d1a51a`](https://github.com/AppFlowy-IO/AppFlowy/commit/0d1a51a186f6a1eb04c0788cac5212a31d1d8ffb) chore: fix autoscroll ### 📊 Changes **23 files changed** (+183 additions, -159 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/android/app/src/main/Classes/binding.h` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_add_row_test.dart` (+33 -20) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_group_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/ios/Podfile.lock` (+3 -9) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_controller.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/field/field_cell_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart` (+49 -59) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_hidden_groups.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_event_card.dart` (+7 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_page.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart` (+9 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/layout/layout.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/calculations/calculations_row.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/footer/grid_footer.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/grid_header.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/row/row.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/tab_bar/desktop/tab_bar_header.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_skeleton/text_card_cell.dart` (+46 -39) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_style_maps/desktop_board_card_cell_style.dart` (+1 -1) _...and 3 more files_ </details> ### 📄 Description - When not editing the title, wrap the title into two lines. When editing, show all the contents - improve text editing behavior. Titles will be forced to be single line - expand kanban board to full width - allow auto-scrolling when dragging a card to the edge of the kanban board. resolves https://github.com/AppFlowy-IO/AppFlowy/issues/4979 resolves https://github.com/AppFlowy-IO/AppFlowy/issues/4666 ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:16: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#6717
No description provided.