[PR #4100] [MERGED] feat: mobile notifications screen #6059

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4100
Author: @Xazin
Created: 12/6/2023
Status: Merged
Merged: 12/8/2023
Merged by: @LucasXu0

Base: mainHead: feat/mobile-notifications-screen


📝 Commits (6)

📊 Changes

21 files changed (+827 additions, -472 deletions)

View changed files

frontend/appflowy_flutter/lib/mobile/application/user_profile/user_profile_bloc.dart (+65 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart (+8 -18)
frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_page.dart (+167 -0)
frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/mobile_notification_tab_bar.dart (+69 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/personal_info/personal_info_setting_group.dart (+3 -7)
📝 frontend/appflowy_flutter/lib/plugins/document/document_page.dart (+30 -32)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/error/error_block_component_builder.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart (+40 -12)
📝 frontend/appflowy_flutter/lib/startup/tasks/generate_router.dart (+5 -21)
📝 frontend/appflowy_flutter/lib/user/application/reminder/reminder_bloc.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/notifications/notification_action.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/user/settings_user_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/notifications/notification_dialog.dart (+4 -177)
frontend/appflowy_flutter/lib/workspace/presentation/notifications/reminder_extension.dart (+7 -0)
frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/flowy_tab.dart (+37 -0)
frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/inbox_action_bar.dart (+174 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_item.dart (+145 -107)
📝 frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_tab_bar.dart (+3 -27)
📝 frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_view.dart (+57 -66)
📝 frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notifications_hub_empty.dart (+1 -0)

...and 1 more files

📄 Description

Feature Review

https://github.com/AppFlowy-IO/AppFlowy/assets/42929161/e8ae3af7-6d00-4a13-9368-cbf95ac31f2c

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/4100 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 12/6/2023 **Status:** ✅ Merged **Merged:** 12/8/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feat/mobile-notifications-screen` --- ### 📝 Commits (6) - [`ca652ea`](https://github.com/AppFlowy-IO/AppFlowy/commit/ca652ea4e564f3f70c2cc3d56f9bc80cd7de6d5a) fix: update username on mobile header on change - [`ae9a249`](https://github.com/AppFlowy-IO/AppFlowy/commit/ae9a249e63b6a57e5c7a3825296fff2e7502dd8b) feat: notifications page - [`abc87d7`](https://github.com/AppFlowy-IO/AppFlowy/commit/abc87d7e9931eb18a0804231409da441b4d90de7) chore: merge main - [`82af2a3`](https://github.com/AppFlowy-IO/AppFlowy/commit/82af2a3017a03bfc5ab152d7afa457800a07306b) feat: refactor and refinement - [`844ffb0`](https://github.com/AppFlowy-IO/AppFlowy/commit/844ffb0728bab19d9179c3a05ffb1c13f809e951) fix: code review - [`d81d7bc`](https://github.com/AppFlowy-IO/AppFlowy/commit/d81d7bc6fe4d5e0ab62c1cb327236c29dc13c87a) chore: merge main ### 📊 Changes **21 files changed** (+827 additions, -472 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/lib/mobile/application/user_profile/user_profile_bloc.dart` (+65 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart` (+8 -18) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_page.dart` (+167 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/mobile_notification_tab_bar.dart` (+69 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/personal_info/personal_info_setting_group.dart` (+3 -7) 📝 `frontend/appflowy_flutter/lib/plugins/document/document_page.dart` (+30 -32) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/error/error_block_component_builder.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart` (+40 -12) 📝 `frontend/appflowy_flutter/lib/startup/tasks/generate_router.dart` (+5 -21) 📝 `frontend/appflowy_flutter/lib/user/application/reminder/reminder_bloc.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/notifications/notification_action.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/user/settings_user_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/notifications/notification_dialog.dart` (+4 -177) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/notifications/reminder_extension.dart` (+7 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/flowy_tab.dart` (+37 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/inbox_action_bar.dart` (+174 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_item.dart` (+145 -107) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_tab_bar.dart` (+3 -27) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notification_view.dart` (+57 -66) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/notifications/widgets/notifications_hub_empty.dart` (+1 -0) _...and 1 more files_ </details> ### 📄 Description #### Feature Review https://github.com/AppFlowy-IO/AppFlowy/assets/42929161/e8ae3af7-6d00-4a13-9368-cbf95ac31f2c #### PR Checklist - [x] 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:31 +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#6059
No description provided.