[PR #521] [MERGED] Fix: grid UI adjust #4170

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

📋 Pull Request Information

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

Base: mainHead: fix/grid_ui_adjust


📝 Commits (9)

  • a568f63 chore: refactor grid cell expander
  • cdfe94c chore: rename some classes
  • 9c5081b chore: enable the richtext widget as large as parent
  • 9518e16 chore: config cell accessory
  • 1036521 chore: copy property to pasteboard
  • 57e5c36 chore: config toast
  • 5bd0fb9 chore: config build context of URLCellEditor
  • 0b83684 chore: optimaze tap area of row detail cells
  • b286276 chore: remove unavailable action of GridSettingAction and RowAction

📊 Changes

24 files changed (+484 additions, -386 deletions)

View changed files

📝 frontend/app_flowy/assets/translations/en.json (+2 -1)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+3 -0)
📝 frontend/app_flowy/lib/startup/tasks/app_widget.dart (+35 -33)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart (+5 -5)
📝 frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart (+2 -7)
frontend/app_flowy/lib/workspace/presentation/home/toast.dart (+37 -0)
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_accessory.dart (+171 -0)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart (+33 -22)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/checkbox_cell.dart (+5 -5)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/date_cell/date_cell.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/number_cell.dart (+13 -15)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/select_option_cell.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/text_cell.dart (+11 -11)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/cell_editor.dart (+11 -2)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/url_cell.dart (+90 -31)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_cell.dart (+0 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/grid_row.dart (+28 -17)
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/number_cell.dart (+0 -44)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/row_action_sheet.dart (+1 -0)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/row_detail.dart (+19 -14)

...and 4 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/521 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 6/1/2022 **Status:** ✅ Merged **Merged:** 6/1/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix/grid_ui_adjust` --- ### 📝 Commits (9) - [`a568f63`](https://github.com/AppFlowy-IO/AppFlowy/commit/a568f6323dd066934bbabc86d4c8770c1f0ce53b) chore: refactor grid cell expander - [`cdfe94c`](https://github.com/AppFlowy-IO/AppFlowy/commit/cdfe94cf988a55ba879507d2fccff8e5d2ccae24) chore: rename some classes - [`9c5081b`](https://github.com/AppFlowy-IO/AppFlowy/commit/9c5081bc07a054a11c4711024bc58be7e791f3c5) chore: enable the richtext widget as large as parent - [`9518e16`](https://github.com/AppFlowy-IO/AppFlowy/commit/9518e164b577c060db74bc26d2860c9304bc9330) chore: config cell accessory - [`1036521`](https://github.com/AppFlowy-IO/AppFlowy/commit/10365217caea308a542e721afa15d7f8a63ea37c) chore: copy property to pasteboard - [`57e5c36`](https://github.com/AppFlowy-IO/AppFlowy/commit/57e5c36fe8af79f7bf7ce7e5d9f917039aa86b10) chore: config toast - [`5bd0fb9`](https://github.com/AppFlowy-IO/AppFlowy/commit/5bd0fb9fae102e476c4650025b2b0a6a09f4621b) chore: config build context of URLCellEditor - [`0b83684`](https://github.com/AppFlowy-IO/AppFlowy/commit/0b83684c660698308e9a88a6f3e5b8efc114fa57) chore: optimaze tap area of row detail cells - [`b286276`](https://github.com/AppFlowy-IO/AppFlowy/commit/b286276108568d4cdc179c53b05beac624a518b9) chore: remove unavailable action of GridSettingAction and RowAction ### 📊 Changes **24 files changed** (+484 additions, -386 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/assets/translations/en.json` (+2 -1) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+3 -0) 📝 `frontend/app_flowy/lib/startup/tasks/app_widget.dart` (+35 -33) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart` (+5 -5) 📝 `frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart` (+2 -7) ➕ `frontend/app_flowy/lib/workspace/presentation/home/toast.dart` (+37 -0) ➕ `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_accessory.dart` (+171 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart` (+33 -22) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/checkbox_cell.dart` (+5 -5) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/date_cell/date_cell.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/number_cell.dart` (+13 -15) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/select_option_cell.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/text_cell.dart` (+11 -11) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/cell_editor.dart` (+11 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/url_cell.dart` (+90 -31) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_cell.dart` (+0 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/grid_row.dart` (+28 -17) ➖ `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/number_cell.dart` (+0 -44) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/row_action_sheet.dart` (+1 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/row_detail.dart` (+19 -14) _...and 4 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:36:37 +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#4170
No description provided.