[PR #3809] [MERGED] fix: mobile page issues and improvements #5891

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3809
Author: @LucasXu0
Created: 10/27/2023
Status: Merged
Merged: 10/27/2023
Merged by: @LucasXu0

Base: mainHead: mobile_launch_review


📝 Commits (6)

  • 04b0914 chore: update connectivity plus to 5.0.1
  • 5cfd8bc feat: update favorite status on time
  • 7ecb13b fix: text overflow
  • 9c7fd99 feat: implement ... button in editor page
  • d6504ac fix: align the icon and the text on the favorite page
  • ac14f7a feat: enable feedback when tapping icons

📊 Changes

25 files changed (+509 additions, -76 deletions)

View changed files

📝 frontend/appflowy_flutter/ios/Podfile.lock (+1 -1)
frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar_actions.dart (+66 -0)
frontend/appflowy_flutter/lib/mobile/presentation/base/box_container.dart (+27 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart (+115 -15)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet.dart (+5 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_action_widget.dart (+5 -11)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_add_new_page.dart (+4 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_drag_handler.dart (+3 -3)
frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_page.dart (+232 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/default_mobile_action_pane.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_folder.dart (+13 -9)
📝 frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_page.dart (+5 -9)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/mobile_home_favorite_folder.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/personal_folder/mobile_home_personal_folder.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart (+1 -8)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+2 -2)
frontend/resources/flowy_icons/16x/three-dots.svg (+3 -0)

...and 5 more files

📄 Description

Feature Preview

closes https://github.com/AppFlowy-IO/AppFlowy/issues/3807

Screenshot 2023-10-26 at 17 14 51 Screenshot 2023-10-27 at 11 35 40 Screenshot 2023-10-27 at 10 47 36

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/3809 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 10/27/2023 **Status:** ✅ Merged **Merged:** 10/27/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `mobile_launch_review` --- ### 📝 Commits (6) - [`04b0914`](https://github.com/AppFlowy-IO/AppFlowy/commit/04b0914893d5a3690ae8a4a4f8025c349b57b88b) chore: update connectivity plus to 5.0.1 - [`5cfd8bc`](https://github.com/AppFlowy-IO/AppFlowy/commit/5cfd8bc6cf6caefe8683160e7811504a589fbe66) feat: update favorite status on time - [`7ecb13b`](https://github.com/AppFlowy-IO/AppFlowy/commit/7ecb13b4c9039ddf00b6187cd68a865ac1ed7070) fix: text overflow - [`9c7fd99`](https://github.com/AppFlowy-IO/AppFlowy/commit/9c7fd9969aee559b0ecd83ad94a241b3249f27ba) feat: implement ... button in editor page - [`d6504ac`](https://github.com/AppFlowy-IO/AppFlowy/commit/d6504acaf696a8c8d1e2c5eace7d73e72d264826) fix: align the icon and the text on the favorite page - [`ac14f7a`](https://github.com/AppFlowy-IO/AppFlowy/commit/ac14f7a94a666934f26e7b36f150794a72b3d720) feat: enable feedback when tapping icons ### 📊 Changes **25 files changed** (+509 additions, -76 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/ios/Podfile.lock` (+1 -1) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/base/app_bar_actions.dart` (+66 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/base/box_container.dart` (+27 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart` (+115 -15) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet.dart` (+5 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_action_widget.dart` (+5 -11) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_add_new_page.dart` (+4 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_drag_handler.dart` (+3 -3) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_page.dart` (+232 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/default_mobile_action_pane.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_folder.dart` (+13 -9) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_page.dart` (+5 -9) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/mobile_home_favorite_folder.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/personal_folder/mobile_home_personal_folder.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart` (+1 -8) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+2 -2) ➕ `frontend/resources/flowy_icons/16x/three-dots.svg` (+3 -0) _...and 5 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 closes https://github.com/AppFlowy-IO/AppFlowy/issues/3807 <img width="464" alt="Screenshot 2023-10-26 at 17 14 51" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/970654f7-49f4-4d1c-8ec2-a45de981f8ba"> <img width="533" alt="Screenshot 2023-10-27 at 11 35 40" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/c699e890-3ef6-48fd-804b-f362259e615e"> <img width="533" alt="Screenshot 2023-10-27 at 10 47 36" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/cd63e172-172a-48f8-b6f4-5d78b6a8479a"> <!--- 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) - [x] 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:20: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#5891
No description provided.