[PR #5128] [MERGED] feat: allow fields to not wrap cell content #6660

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

📋 Pull Request Information

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

Base: mainHead: feat/wrap-cell-content


📝 Commits (1)

  • 253891c feat: allow fields to NOT wrap cell content

📊 Changes

54 files changed (+660 additions, -475 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/presentation/database/date_picker/mobile_date_picker_screen.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_edit_field_screen.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_quick_field_editor.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/checkbox_cell_bloc.dart (+12 -7)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/checklist_cell_bloc.dart (+5 -7)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/date_cell_bloc.dart (+17 -4)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/date_cell_editor_bloc.dart (+4 -6)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/number_cell_bloc.dart (+28 -9)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/relation_cell_bloc.dart (+34 -23)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/select_option_cell_bloc.dart (+29 -11)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/select_option_cell_editor_bloc.dart (+19 -18)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/text_cell_bloc.dart (+42 -18)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/timestamp_cell_bloc.dart (+29 -9)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/url_cell_bloc.dart (+35 -16)
frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/url_cell_editor_bloc.dart (+0 -86)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_controller.dart (+40 -18)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_data_loader.dart (+1 -6)
📝 frontend/appflowy_flutter/lib/plugins/database/application/field/field_cell_bloc.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/application/field/field_editor_bloc.dart (+10 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/application/field/field_info.dart (+4 -0)

...and 34 more files

📄 Description

by default, don't wrap
if users want to, wrap

Screenshot 2024-04-13 at 4 04 22 PM

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/5128 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 4/13/2024 **Status:** ✅ Merged **Merged:** 4/13/2024 **Merged by:** [@richardshiue](https://github.com/richardshiue) **Base:** `main` ← **Head:** `feat/wrap-cell-content` --- ### 📝 Commits (1) - [`253891c`](https://github.com/AppFlowy-IO/AppFlowy/commit/253891cddcb971f3dc6e9d2770533af6ce79c867) feat: allow fields to NOT wrap cell content ### 📊 Changes **54 files changed** (+660 additions, -475 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/date_picker/mobile_date_picker_screen.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_edit_field_screen.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_quick_field_editor.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/checkbox_cell_bloc.dart` (+12 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/checklist_cell_bloc.dart` (+5 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/date_cell_bloc.dart` (+17 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/date_cell_editor_bloc.dart` (+4 -6) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/number_cell_bloc.dart` (+28 -9) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/relation_cell_bloc.dart` (+34 -23) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/select_option_cell_bloc.dart` (+29 -11) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/select_option_cell_editor_bloc.dart` (+19 -18) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/text_cell_bloc.dart` (+42 -18) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/timestamp_cell_bloc.dart` (+29 -9) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/url_cell_bloc.dart` (+35 -16) ➖ `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/url_cell_editor_bloc.dart` (+0 -86) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_controller.dart` (+40 -18) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_data_loader.dart` (+1 -6) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/field/field_cell_bloc.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/field/field_editor_bloc.dart` (+10 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/field/field_info.dart` (+4 -0) _...and 34 more files_ </details> ### 📄 Description by default, don't wrap if users want to, wrap ![Screenshot 2024-04-13 at 4 04 22 PM](https://github.com/AppFlowy-IO/AppFlowy/assets/71320345/2c8308a4-82c3-45b6-99aa-19b432b310c2) ### 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:05 +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#6660
No description provided.