[PR #4991] [MERGED] feat: show member count on mobile #6567

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4991
Author: @LucasXu0
Created: 3/26/2024
Status: Merged
Merged: 3/26/2024
Merged by: @LucasXu0

Base: mainHead: workspace_mobile_member


📝 Commits (4)

  • 6009aa1 feat: show member count on mobile
  • e952dc2 fix: favorite section not sync after switching workspace
  • 059c615 fix: favorite page will throw an error
  • f6ac9d2 fix: flutter analyze

📊 Changes

12 files changed (+227 additions, -132 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_folder.dart (+46 -39)
📝 frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_page.dart (+14 -6)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/section_folder/mobile_home_section_folder.dart (+16 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/section_folder/mobile_home_section_folder_header.dart (+1 -14)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/workspaces/workspace_menu_bottom_sheet.dart (+83 -14)
📝 frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_option_tile.dart (+21 -11)
📝 frontend/appflowy_flutter/lib/workspace/application/favorite/favorite_bloc.dart (+17 -22)
📝 frontend/appflowy_flutter/lib/workspace/application/favorite/favorite_listener.dart (+18 -17)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_workspace.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/workspace/_sidebar_workspace_icon.dart (+4 -2)

📄 Description

Feature Preview

Screenshot 2024-03-26 at 12 08 43

the collaboration feature flag is turned off. it's okay to merge into the main branch.


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/4991 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 3/26/2024 **Status:** ✅ Merged **Merged:** 3/26/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `workspace_mobile_member` --- ### 📝 Commits (4) - [`6009aa1`](https://github.com/AppFlowy-IO/AppFlowy/commit/6009aa101c87061ea3f5d925a792a22dba88e3fc) feat: show member count on mobile - [`e952dc2`](https://github.com/AppFlowy-IO/AppFlowy/commit/e952dc288e421ef2306096121a37acc8303cca30) fix: favorite section not sync after switching workspace - [`059c615`](https://github.com/AppFlowy-IO/AppFlowy/commit/059c615eff5d8380134ce70ce0a0957064ab72e7) fix: favorite page will throw an error - [`f6ac9d2`](https://github.com/AppFlowy-IO/AppFlowy/commit/f6ac9d20f93d9dc0a38e864f36de73f962d829e9) fix: flutter analyze ### 📊 Changes **12 files changed** (+227 additions, -132 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_folder.dart` (+46 -39) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_page.dart` (+14 -6) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/section_folder/mobile_home_section_folder.dart` (+16 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/section_folder/mobile_home_section_folder_header.dart` (+1 -14) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/workspaces/workspace_menu_bottom_sheet.dart` (+83 -14) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/widgets/flowy_option_tile.dart` (+21 -11) 📝 `frontend/appflowy_flutter/lib/workspace/application/favorite/favorite_bloc.dart` (+17 -22) 📝 `frontend/appflowy_flutter/lib/workspace/application/favorite/favorite_listener.dart` (+18 -17) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_workspace.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/workspace/_sidebar_workspace_icon.dart` (+4 -2) </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 <img width="437" alt="Screenshot 2024-03-26 at 12 08 43" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/6bb8728a-120d-4d61-8166-6ee456354e5f"> the collaboration feature flag is turned off. it's okay to merge into the main branch. <!--- 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 - [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:23:47 +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#6567
No description provided.