[PR #4065] [MERGED] feat: edit property #6037

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4065
Author: @LucasXu0
Created: 12/1/2023
Status: Merged
Merged: 12/2/2023
Merged by: @LucasXu0

Base: mainHead: edit_property


📝 Commits (10+)

  • c85543e feat: edit property
  • 1d55ba8 feat: disable actions if field is primary
  • 778c4c9 feat: remove include time
  • a1e9624 chore: set title to medium
  • b6780c9 Merge branch 'main' into edit_property
  • 95bf91b fix: flutter analyze
  • fafd271 chore: update built in text style
  • 1357ac7 Merge branch 'main' into edit_property
  • abc7478 Merge branch 'main' into edit_property
  • dd6dc6c chore: update text style

📊 Changes

31 files changed (+429 additions, -235 deletions)

View changed files

📝 frontend/appflowy_flutter/ios/Podfile.lock (+1 -1)
📝 frontend/appflowy_flutter/ios/Runner.xcodeproj/project.pbxproj (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar_actions.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item_header.dart (+8 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/show_mobile_bottom_sheet.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_create_field_screen.dart (+4 -6)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_edit_field_screen.dart (+139 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/_field_options.dart (+4 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/_field_options_eidtor.dart (+116 -123)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/date_picker/mobile_date_picker_screen.dart (+5 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/mobile_calendar_events_screen.dart (+6 -6)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/mobile_home_recent_views.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/mobile_recent_view.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/root_placeholder_page.dart (+4 -25)
📝 frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_option_tile.dart (+8 -6)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/field/field_service.dart (+14 -3)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/grid_header.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/mobile_field_cell.dart (+38 -16)

...and 11 more files

📄 Description

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/4065 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 12/1/2023 **Status:** ✅ Merged **Merged:** 12/2/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `edit_property` --- ### 📝 Commits (10+) - [`c85543e`](https://github.com/AppFlowy-IO/AppFlowy/commit/c85543e51bfc0a24b9c08106a86e7279b0120f1c) feat: edit property - [`1d55ba8`](https://github.com/AppFlowy-IO/AppFlowy/commit/1d55ba8b093bbae657d35ffa041257e434b83ccc) feat: disable actions if field is primary - [`778c4c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/778c4c92c39df78f3fd28047d0284a7ff557532d) feat: remove include time - [`a1e9624`](https://github.com/AppFlowy-IO/AppFlowy/commit/a1e96241d4de60db363d4f7d86b576221f51ec3b) chore: set title to medium - [`b6780c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/b6780c9a612a6c7e9971ffbeb8faa11fe403e129) Merge branch 'main' into edit_property - [`95bf91b`](https://github.com/AppFlowy-IO/AppFlowy/commit/95bf91bff252d5b36780301dec22e5ce86b02093) fix: flutter analyze - [`fafd271`](https://github.com/AppFlowy-IO/AppFlowy/commit/fafd271addbfdfb9ebea40806bc89cfd05662a36) chore: update built in text style - [`1357ac7`](https://github.com/AppFlowy-IO/AppFlowy/commit/1357ac7e70d1d5ed10e7fd827f4b10ceff03ff33) Merge branch 'main' into edit_property - [`abc7478`](https://github.com/AppFlowy-IO/AppFlowy/commit/abc74785b073e79fd0c4cc16d8cb95c255a8fdb7) Merge branch 'main' into edit_property - [`dd6dc6c`](https://github.com/AppFlowy-IO/AppFlowy/commit/dd6dc6cad02c51d0cd3eb9fd1adb8826adcadfac) chore: update text style ### 📊 Changes **31 files changed** (+429 additions, -235 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/ios/Podfile.lock` (+1 -1) 📝 `frontend/appflowy_flutter/ios/Runner.xcodeproj/project.pbxproj` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar_actions.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item_header.dart` (+8 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/show_mobile_bottom_sheet.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_create_field_screen.dart` (+4 -6) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_edit_field_screen.dart` (+139 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/_field_options.dart` (+4 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/_field_options_eidtor.dart` (+116 -123) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/date_picker/mobile_date_picker_screen.dart` (+5 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/mobile_calendar_events_screen.dart` (+6 -6) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/mobile_home_recent_views.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/mobile_recent_view.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/root_placeholder_page.dart` (+4 -25) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_option_tile.dart` (+8 -6) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/field/field_service.dart` (+14 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/grid_header.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/mobile_field_cell.dart` (+38 -16) _...and 11 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### 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 22:21:26 +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#6037
No description provided.