[PR #4186] [MERGED] feat: mobile view editor improvements #6114

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4186
Author: @richardshiue
Created: 12/21/2023
Status: Merged
Merged: 12/21/2023
Merged by: @richardshiue

Base: mainHead: feat/view-editor-improvements


📝 Commits (4)

  • 7150a3e feat: database view editor improvements
  • 4f67f43 feat: implement calendar settings
  • e0f51ba chore: merge remote-tracking branch 'upstream/main' into feat/view-editor-improvements
  • 35109c5 fix: wrong view being opened

📊 Changes

21 files changed (+785 additions, -1102 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_card_detail_screen.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_field_bottom_sheets.dart (+21 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_field_picker_list.dart (+150 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_quick_field_editor.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_field_list.dart (+2 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_view_layout.dart (+108 -23)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_view_list.dart (+221 -59)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_view_quick_actions.dart (+54 -19)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/edit_database_view_screen.dart (+26 -63)
frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_paginated_bottom_sheet.dart (+0 -227)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/tab_bar_bloc.dart (+6 -4)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_setting_bloc.dart (+87 -36)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart (+15 -9)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_layout_setting.dart (+32 -84)
📝 frontend/appflowy_flutter/lib/plugins/database_view/tab_bar/desktop/tab_bar_header.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/database_layout_selector.dart (+0 -60)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/database_setting_action.dart (+17 -121)
frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/mobile_calendar_settings.dart (+0 -347)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/mobile_database_controls.dart (+41 -26)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/setting_button.dart (+0 -18)

...and 1 more files

📄 Description

Known issues:

  • duplicate and delete have no effect
  • inline database view problems

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/4186 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 12/21/2023 **Status:** ✅ Merged **Merged:** 12/21/2023 **Merged by:** [@richardshiue](https://github.com/richardshiue) **Base:** `main` ← **Head:** `feat/view-editor-improvements` --- ### 📝 Commits (4) - [`7150a3e`](https://github.com/AppFlowy-IO/AppFlowy/commit/7150a3e79eaf3d6dce2ff58545bc99857f2a2dc8) feat: database view editor improvements - [`4f67f43`](https://github.com/AppFlowy-IO/AppFlowy/commit/4f67f43cbef30fdd0bf68a98336bfbf3ef967a02) feat: implement calendar settings - [`e0f51ba`](https://github.com/AppFlowy-IO/AppFlowy/commit/e0f51ba36894849fb6940c4254a9d9ca5e80823f) chore: merge remote-tracking branch 'upstream/main' into feat/view-editor-improvements - [`35109c5`](https://github.com/AppFlowy-IO/AppFlowy/commit/35109c5862d0d5c58281e64616fa5a19c80de417) fix: wrong view being opened ### 📊 Changes **21 files changed** (+785 additions, -1102 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_card_detail_screen.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_field_bottom_sheets.dart` (+21 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_field_picker_list.dart` (+150 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_quick_field_editor.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_field_list.dart` (+2 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_view_layout.dart` (+108 -23) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_view_list.dart` (+221 -59) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_view_quick_actions.dart` (+54 -19) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/edit_database_view_screen.dart` (+26 -63) ➖ `frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_paginated_bottom_sheet.dart` (+0 -227) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/tab_bar_bloc.dart` (+6 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_setting_bloc.dart` (+87 -36) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_page.dart` (+15 -9) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/toolbar/calendar_layout_setting.dart` (+32 -84) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/tab_bar/desktop/tab_bar_header.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/database_layout_selector.dart` (+0 -60) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/database_setting_action.dart` (+17 -121) ➖ `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/mobile_calendar_settings.dart` (+0 -347) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/mobile_database_controls.dart` (+41 -26) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/setting_button.dart` (+0 -18) _...and 1 more files_ </details> ### 📄 Description Known issues: - duplicate and delete have no effect - inline database view problems ### 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:46 +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#6114
No description provided.