[PR #3788] [MERGED] feat: add new database on mobile platform #5880

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

📋 Pull Request Information

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

Base: mainHead: add_new_database


📝 Commits (6)

  • 34b9bb4 chore: downgrade clipboard package
  • 36305f3 fix: update i18n in the favorite page
  • 5f68c5e fix: update the favorite icon
  • e0fa58a feat: support add new database
  • 4a0cb81 chore: disable cache in unit test
  • 658955f chore: bump version 0.3.7

📊 Changes

19 files changed (+324 additions, -70 deletions)

View changed files

📝 .github/workflows/flutter_ci.yaml (+2 -7)
📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet.dart (+12 -26)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_action_widget.dart (+0 -0)
frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_add_new_page.dart (+105 -0)
frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_drag_handler.dart (+20 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_rename_widget.dart (+0 -0)
frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item.dart (+126 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item_body.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item_header.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/default_mobile_action_pane.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_folder.dart (+10 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/mobile_home_favorite_folder.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_trash_page.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart (+25 -7)
📝 frontend/appflowy_flutter/pubspec.lock (+9 -17)
📝 frontend/appflowy_flutter/pubspec.yaml (+2 -3)
📝 frontend/resources/translations/en.json (+4 -0)
📝 frontend/scripts/makefile/mobile.toml (+1 -1)

📄 Description

Feature Preview

Screenshot 2023-10-26 at 10 41 37

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/3788 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 10/26/2023 **Status:** ✅ Merged **Merged:** 10/26/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `add_new_database` --- ### 📝 Commits (6) - [`34b9bb4`](https://github.com/AppFlowy-IO/AppFlowy/commit/34b9bb40d4f25c3691811bd7abda228abbe709d6) chore: downgrade clipboard package - [`36305f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/36305f3481dab6b60456d7df9e8149b3837ca1aa) fix: update i18n in the favorite page - [`5f68c5e`](https://github.com/AppFlowy-IO/AppFlowy/commit/5f68c5e23cf76e203a9c3bc59cb2168a5e819bd5) fix: update the favorite icon - [`e0fa58a`](https://github.com/AppFlowy-IO/AppFlowy/commit/e0fa58a0b1d61a585e3e5f507a51ca0fd1ac3cb7) feat: support add new database - [`4a0cb81`](https://github.com/AppFlowy-IO/AppFlowy/commit/4a0cb81dbfacf6f2cc5f850efeb065a313895e8b) chore: disable cache in unit test - [`658955f`](https://github.com/AppFlowy-IO/AppFlowy/commit/658955f792d7332be181de5e4d00a262ef21fa0d) chore: bump version 0.3.7 ### 📊 Changes **19 files changed** (+324 additions, -70 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/flutter_ci.yaml` (+2 -7) 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet.dart` (+12 -26) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_action_widget.dart` (+0 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_add_new_page.dart` (+105 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_drag_handler.dart` (+20 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_rename_widget.dart` (+0 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item.dart` (+126 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item_body.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_item_header.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/default_mobile_action_pane.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/favorite/mobile_favorite_folder.dart` (+10 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/mobile_home_favorite_folder.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_trash_page.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart` (+25 -7) 📝 `frontend/appflowy_flutter/pubspec.lock` (+9 -17) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+2 -3) 📝 `frontend/resources/translations/en.json` (+4 -0) 📝 `frontend/scripts/makefile/mobile.toml` (+1 -1) </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="543" alt="Screenshot 2023-10-26 at 10 41 37" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/1b7ce8b0-bd6c-43b1-bb18-7106532fd38f"> <!--- 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 22:20:44 +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#5880
No description provided.