[PR #5535] [MERGED] feat: improve view thumbnail #6869

Closed
opened 2026-03-23 23:17:02 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: thumbnail


📝 Commits (5)

  • 77ddbcc feat: improve view thumbnail
  • 116cbeb chore: blur the bottom navigation bar
  • ec26d48 feat: improve date format
  • 6171902 feat: support url avatar
  • b59c629 fix: remove duplicated divider

📊 Changes

16 files changed (+219 additions, -66 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_block_action_widget.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/favorite_space.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/home_space/home_space.dart (+6 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/recent_space.dart (+10 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_view_card.dart (+66 -15)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/tab/_tab_bar.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart (+35 -14)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/collaborator_avater_stack.dart (+4 -5)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/document_collaborators.dart (+59 -15)
📝 frontend/resources/flowy_icons/16x/m_layout.svg (+1 -6)
frontend/resources/flowy_icons/24x/m_board_thumbnail.svg (+5 -0)
frontend/resources/flowy_icons/24x/m_calendar_thumbnail.svg (+3 -0)
frontend/resources/flowy_icons/24x/m_chat_thumbnail.svg (+14 -0)
frontend/resources/flowy_icons/24x/m_document_thumbnail.svg (+3 -0)
frontend/resources/flowy_icons/24x/m_grid_thumbnail.svg (+3 -0)

📄 Description

Feature Preview

  • change page thumbnail
  • blur the bottom navigation bar
  • improve time display format
Screenshot 2024-06-14 at 10 27 05 Screenshot 2024-06-14 at 10 42 00

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/5535 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 6/14/2024 **Status:** ✅ Merged **Merged:** 6/14/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `thumbnail` --- ### 📝 Commits (5) - [`77ddbcc`](https://github.com/AppFlowy-IO/AppFlowy/commit/77ddbcc3af4883cac3a843660acd4b4aa0297aa8) feat: improve view thumbnail - [`116cbeb`](https://github.com/AppFlowy-IO/AppFlowy/commit/116cbeb9723bbcdacdab37788c34a1fe182177c9) chore: blur the bottom navigation bar - [`ec26d48`](https://github.com/AppFlowy-IO/AppFlowy/commit/ec26d4847f52bf965f56b4c72881a2ba8f0cb67d) feat: improve date format - [`6171902`](https://github.com/AppFlowy-IO/AppFlowy/commit/617190228abce8b4191bc802cf7ebfbe704d632c) feat: support url avatar - [`b59c629`](https://github.com/AppFlowy-IO/AppFlowy/commit/b59c62976be09ebeb0ccd35db0012dd600991e05) fix: remove duplicated divider ### 📊 Changes **16 files changed** (+219 additions, -66 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_block_action_widget.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/favorite_space.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/home_space/home_space.dart` (+6 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/recent_space.dart` (+10 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_view_card.dart` (+66 -15) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/tab/_tab_bar.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart` (+35 -14) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/collaborator_avater_stack.dart` (+4 -5) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/document_collaborators.dart` (+59 -15) 📝 `frontend/resources/flowy_icons/16x/m_layout.svg` (+1 -6) ➕ `frontend/resources/flowy_icons/24x/m_board_thumbnail.svg` (+5 -0) ➕ `frontend/resources/flowy_icons/24x/m_calendar_thumbnail.svg` (+3 -0) ➕ `frontend/resources/flowy_icons/24x/m_chat_thumbnail.svg` (+14 -0) ➕ `frontend/resources/flowy_icons/24x/m_document_thumbnail.svg` (+3 -0) ➕ `frontend/resources/flowy_icons/24x/m_grid_thumbnail.svg` (+3 -0) </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 - change page thumbnail - blur the bottom navigation bar - improve time display format <img width="300" alt="Screenshot 2024-06-14 at 10 27 05" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/0b37a6b8-3610-437c-aa6a-b7ed5ae8117b"> <img width="300" alt="Screenshot 2024-06-14 at 10 42 00" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/608d013c-ea02-4eca-9dbe-33443b020f8d"> <!--- 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 23:17:02 +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#6869
No description provided.