[PR #6049] [MERGED] feat: support sign in with Apple #7162

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6049
Author: @LucasXu0
Created: 8/23/2024
Status: Merged
Merged: 8/27/2024
Merged by: @LucasXu0

Base: mainHead: sign_in_with_apple


📝 Commits (6)

  • cec2dc9 feat: support sign in with Apple
  • ff6a76b feat: support sign in with Apple
  • d8aeb81 feat: optimize sign in on desktop
  • 6c36f05 feat: expand third party sign in buttons on android
  • 115880a fix: revert text color and font size in button
  • baecbc1 Merge branch 'main' into sign_in_with_apple

📊 Changes

32 files changed (+523 additions, -278 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/shared/auth_operation.dart (+2 -2)
📝 frontend/appflowy_flutter/ios/Runner.xcodeproj/project.pbxproj (+9 -0)
📝 frontend/appflowy_flutter/ios/Runner/Info.plist (+67 -69)
📝 frontend/appflowy_flutter/ios/Runner/Runner.entitlements (+4 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_rename_widget.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/cloud/appflowy_cloud_page.dart (+4 -7)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/user_session_setting_group.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_editor.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/application/auth/af_cloud_auth_service.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart (+4 -2)
📝 frontend/appflowy_flutter/lib/user/presentation/helpers/handle_open_workspace_error.dart (+15 -14)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/desktop_sign_in_screen.dart (+3 -4)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart (+46 -31)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/sign_in_screen.dart (+13 -12)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/magic_link_sign_in_buttons.dart (+12 -3)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_agreement.dart (+10 -2)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_anonymous_button.dart (+9 -5)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_or_logout_button.dart (+2 -2)
frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_button.dart (+137 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_buttons.dart (+134 -109)

...and 12 more files

📄 Description

Feature Preview

blocking by the gotrue migration.

Screenshot 2024-08-24 at 10 25 03 Screenshot 2024-08-24 at 10 25 18

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/6049 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/23/2024 **Status:** ✅ Merged **Merged:** 8/27/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `sign_in_with_apple` --- ### 📝 Commits (6) - [`cec2dc9`](https://github.com/AppFlowy-IO/AppFlowy/commit/cec2dc972451805c3e684aa74058f14f754393d2) feat: support sign in with Apple - [`ff6a76b`](https://github.com/AppFlowy-IO/AppFlowy/commit/ff6a76b520363da67f56253375df4577cdb0b147) feat: support sign in with Apple - [`d8aeb81`](https://github.com/AppFlowy-IO/AppFlowy/commit/d8aeb815860e1d50d7a0f9caf47da7a2e5391e01) feat: optimize sign in on desktop - [`6c36f05`](https://github.com/AppFlowy-IO/AppFlowy/commit/6c36f053856a2246ffaa206efccbc19c1aded721) feat: expand third party sign in buttons on android - [`115880a`](https://github.com/AppFlowy-IO/AppFlowy/commit/115880a534fb56846253fd99109df880010b9915) fix: revert text color and font size in button - [`baecbc1`](https://github.com/AppFlowy-IO/AppFlowy/commit/baecbc1ded33151de34fec93af99b03c26111812) Merge branch 'main' into sign_in_with_apple ### 📊 Changes **32 files changed** (+523 additions, -278 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/shared/auth_operation.dart` (+2 -2) 📝 `frontend/appflowy_flutter/ios/Runner.xcodeproj/project.pbxproj` (+9 -0) 📝 `frontend/appflowy_flutter/ios/Runner/Info.plist` (+67 -69) 📝 `frontend/appflowy_flutter/ios/Runner/Runner.entitlements` (+4 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_rename_widget.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/cloud/appflowy_cloud_page.dart` (+4 -7) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/user_session_setting_group.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_editor.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/application/auth/af_cloud_auth_service.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart` (+4 -2) 📝 `frontend/appflowy_flutter/lib/user/presentation/helpers/handle_open_workspace_error.dart` (+15 -14) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/desktop_sign_in_screen.dart` (+3 -4) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart` (+46 -31) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/sign_in_screen.dart` (+13 -12) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/magic_link_sign_in_buttons.dart` (+12 -3) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_agreement.dart` (+10 -2) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_anonymous_button.dart` (+9 -5) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_or_logout_button.dart` (+2 -2) ➕ `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_button.dart` (+137 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_buttons.dart` (+134 -109) _...and 12 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 blocking by the gotrue migration. <img width="559" alt="Screenshot 2024-08-24 at 10 25 03" src="https://github.com/user-attachments/assets/a1e29b13-004c-4c4c-af5c-92a50bcc9de2"> <img width="559" alt="Screenshot 2024-08-24 at 10 25 18" src="https://github.com/user-attachments/assets/64859e32-39aa-4a27-a3e2-68f03c1e13c7"> <!--- 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:18:23 +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#7162
No description provided.