[PR #5453] [MERGED] fix: improve sidebar UI #6824

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

📋 Pull Request Information

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

Base: mainHead: sidebar_ui_revamp_v2


📝 Commits (10+)

  • fd487eb fix: revert dark main color
  • 37d9f99 fix: workspace name font size
  • 55e2a2c fix: only show collapse button when hovering the sidebar
  • da949be fix: remove expand button after workspace name
  • 6e313e6 fix: change settings icon opactiy to 0.7
  • 101b888 chore: replace favorite icon
  • f71e98e chore: add arrow icon after section name
  • e909862 chore: replace trash bin icon
  • f3b250b chore: adjust collapse icon padding
  • d2ad861 feat: redesign question bubble

📊 Changes

46 files changed (+423 additions, -241 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/core/frameless_window.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/board/board.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/calendar.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/grid.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_document/database_document_plugin.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/document.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/cover_editor.dart (+7 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/desktop_cover.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/document_header_node_widget.dart (+1 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart (+7 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart (+4 -4)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_folder.dart (+15 -8)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/folder/_folder_header.dart (+37 -16)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/folder/_section_folder.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/footer/sidebar_footer.dart (+21 -10)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/header/sidebar_top_menu.dart (+23 -11)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/shared/sidebar_folder.dart (+8 -8)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/shared/sidebar_new_page_button.dart (+8 -8)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/shared/sidebar_setting.dart (+4 -4)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart (+80 -57)

...and 26 more files

📄 Description

Feature Preview

  • revert dark main color
  • change workspace name font size to 15.0
  • only show collapse button when hovering the sidebar
  • remove expand button after workspace name
  • change settings icon opacity to 0.7
  • replace favorite header icon
  • add arrow icon after section name
  • replace trash bin icon
  • adjust collapse icon padding
  • redesign question bubble
  • add view button padding
  • section header icon size
  • replace default page icon
  • add hover effect to add view button
  • add hover effect to arrow icon
  • add more padding to tooltip
  • remove trash button padding
  • replace favorite icon

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/5453 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 6/3/2024 **Status:** ✅ Merged **Merged:** 6/4/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `sidebar_ui_revamp_v2` --- ### 📝 Commits (10+) - [`fd487eb`](https://github.com/AppFlowy-IO/AppFlowy/commit/fd487eb05b1bfea01223b53148ceef056ee5db2a) fix: revert dark main color - [`37d9f99`](https://github.com/AppFlowy-IO/AppFlowy/commit/37d9f99905304e680400dface0ed7247ddc2eb03) fix: workspace name font size - [`55e2a2c`](https://github.com/AppFlowy-IO/AppFlowy/commit/55e2a2c08c603d4b684cda76bef0df0bf1f2880f) fix: only show collapse button when hovering the sidebar - [`da949be`](https://github.com/AppFlowy-IO/AppFlowy/commit/da949be53913c70e77dc8451921e4469c536b38a) fix: remove expand button after workspace name - [`6e313e6`](https://github.com/AppFlowy-IO/AppFlowy/commit/6e313e68393e862783ea75c1ba401dc8da838e53) fix: change settings icon opactiy to 0.7 - [`101b888`](https://github.com/AppFlowy-IO/AppFlowy/commit/101b888aa861fc61ddde9f49c67208dfb22940e0) chore: replace favorite icon - [`f71e98e`](https://github.com/AppFlowy-IO/AppFlowy/commit/f71e98ebd4dbd1e848fb615e5f68a1039003cfb5) chore: add arrow icon after section name - [`e909862`](https://github.com/AppFlowy-IO/AppFlowy/commit/e909862c9889aa516c6a43435059b7ef251ae8d0) chore: replace trash bin icon - [`f3b250b`](https://github.com/AppFlowy-IO/AppFlowy/commit/f3b250bb64256965ff0841abd3d9537a2cbf7f05) chore: adjust collapse icon padding - [`d2ad861`](https://github.com/AppFlowy-IO/AppFlowy/commit/d2ad861714d1c4574db8eb976c879be8013ae447) feat: redesign question bubble ### 📊 Changes **46 files changed** (+423 additions, -241 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/core/frameless_window.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/board.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/calendar.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/grid.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_document/database_document_plugin.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/document.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/cover_editor.dart` (+7 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/desktop_cover.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/document_header_node_widget.dart` (+1 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart` (+7 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart` (+4 -4) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_folder.dart` (+15 -8) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/folder/_folder_header.dart` (+37 -16) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/folder/_section_folder.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/footer/sidebar_footer.dart` (+21 -10) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/header/sidebar_top_menu.dart` (+23 -11) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/shared/sidebar_folder.dart` (+8 -8) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/shared/sidebar_new_page_button.dart` (+8 -8) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/shared/sidebar_setting.dart` (+4 -4) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart` (+80 -57) _...and 26 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 - [x] revert dark main color - [x] change workspace name font size to 15.0 - [x] only show collapse button when hovering the sidebar - [x] remove expand button after workspace name - [x] change settings icon opacity to 0.7 - [x] replace favorite header icon - [x] add arrow icon after section name - [x] replace trash bin icon - [x] adjust collapse icon padding - [x] redesign question bubble - [x] add view button padding - [x] section header icon size - [x] replace default page icon - [x] add hover effect to add view button - [x] add hover effect to arrow icon - [x] add more padding to tooltip - [x] remove trash button padding - [x] replace favorite icon <!--- 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:50 +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#6824
No description provided.