[PR #468] [MERGED] Add mobile dark mode and user setting #8624

Closed
opened 2026-02-05 13:50:30 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/468
Author: @alextran1502
Created: 8/16/2022
Status: Merged
Merged: 8/16/2022
Merged by: @alextran1502

Base: mainHead: dev/mobile-dark-mode-with-setting-page


📝 Commits (10+)

  • 07a335e styling light and dark theme
  • 299cd39 Icon topbar
  • 5a1ae77 Fixed app bar title dark theme
  • 2168161 Fixed issue with getting thumbnail for things
  • 6767892 Refactor sharing page
  • 1f5daf1 Refactor scroll thumb
  • 6212d59 Refactor chip in auto backup indiation button
  • c9e3d4a Refactor sharing page
  • ec907f9 Added theme toggle
  • 28687fe Up version for testflight build

📊 Changes

47 files changed (+536 additions, -307 deletions)

View changed files

📝 mobile/android/fastlane/Fastfile (+2 -2)
📝 mobile/assets/i18n/en-US.json (+11 -2)
📝 mobile/ios/fastlane/Fastfile (+1 -1)
📝 mobile/lib/constants/immich_colors.dart (+3 -1)
📝 mobile/lib/main.dart (+8 -19)
📝 mobile/lib/modules/album/ui/album_action_outlined_button.dart (+14 -8)
📝 mobile/lib/modules/album/ui/album_thumbnail_card.dart (+2 -3)
📝 mobile/lib/modules/album/ui/album_title_text_field.dart (+9 -2)
📝 mobile/lib/modules/album/ui/album_viewer_appbar.dart (+1 -1)
📝 mobile/lib/modules/album/ui/album_viewer_editable_title.dart (+8 -2)
📝 mobile/lib/modules/album/ui/sharing_sliver_appbar.dart (+13 -18)
📝 mobile/lib/modules/album/views/album_viewer_page.dart (+2 -3)
📝 mobile/lib/modules/album/views/asset_selection_page.dart (+1 -1)
📝 mobile/lib/modules/album/views/create_album_page.dart (+26 -14)
📝 mobile/lib/modules/album/views/library_page.dart (+1 -3)
📝 mobile/lib/modules/album/views/select_user_for_sharing_page.dart (+10 -3)
📝 mobile/lib/modules/album/views/sharing_page.dart (+9 -15)
📝 mobile/lib/modules/asset_viewer/views/gallery_viewer.dart (+2 -1)
📝 mobile/lib/modules/backup/ui/album_info_card.dart (+12 -8)
📝 mobile/lib/modules/backup/ui/backup_info_card.dart (+1 -1)

...and 27 more files

📄 Description

  • Add user setting for dark mode in setting page
  • Styling all components with dual modes

🔄 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/immich-app/immich/pull/468 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 8/16/2022 **Status:** ✅ Merged **Merged:** 8/16/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `dev/mobile-dark-mode-with-setting-page` --- ### 📝 Commits (10+) - [`07a335e`](https://github.com/immich-app/immich/commit/07a335e27112c0dc5b7d659a4e8013e3ac854f1d) styling light and dark theme - [`299cd39`](https://github.com/immich-app/immich/commit/299cd3904dc7568791c08c6cbe55aadff09541bc) Icon topbar - [`5a1ae77`](https://github.com/immich-app/immich/commit/5a1ae77b085830d70f35e39969860783d42d9822) Fixed app bar title dark theme - [`2168161`](https://github.com/immich-app/immich/commit/2168161d66a233e09a1c4fb1cb2843fcb04bae95) Fixed issue with getting thumbnail for things - [`6767892`](https://github.com/immich-app/immich/commit/676789254171c561419cb9f31eb01f5e79d1f926) Refactor sharing page - [`1f5daf1`](https://github.com/immich-app/immich/commit/1f5daf1ee4041f8f30c97085469b07ffa74b22ec) Refactor scroll thumb - [`6212d59`](https://github.com/immich-app/immich/commit/6212d59163b7b4fd643b857e556a63e94b5f98c3) Refactor chip in auto backup indiation button - [`c9e3d4a`](https://github.com/immich-app/immich/commit/c9e3d4a56d493d1eec2523646e778470732db7ee) Refactor sharing page - [`ec907f9`](https://github.com/immich-app/immich/commit/ec907f9136f1adebbbd5d8e0cbbc4a64cb829f27) Added theme toggle - [`28687fe`](https://github.com/immich-app/immich/commit/28687fefae5e6f1fbca82f46c1aea20254ca8ff5) Up version for testflight build ### 📊 Changes **47 files changed** (+536 additions, -307 deletions) <details> <summary>View changed files</summary> 📝 `mobile/android/fastlane/Fastfile` (+2 -2) 📝 `mobile/assets/i18n/en-US.json` (+11 -2) 📝 `mobile/ios/fastlane/Fastfile` (+1 -1) 📝 `mobile/lib/constants/immich_colors.dart` (+3 -1) 📝 `mobile/lib/main.dart` (+8 -19) 📝 `mobile/lib/modules/album/ui/album_action_outlined_button.dart` (+14 -8) 📝 `mobile/lib/modules/album/ui/album_thumbnail_card.dart` (+2 -3) 📝 `mobile/lib/modules/album/ui/album_title_text_field.dart` (+9 -2) 📝 `mobile/lib/modules/album/ui/album_viewer_appbar.dart` (+1 -1) 📝 `mobile/lib/modules/album/ui/album_viewer_editable_title.dart` (+8 -2) 📝 `mobile/lib/modules/album/ui/sharing_sliver_appbar.dart` (+13 -18) 📝 `mobile/lib/modules/album/views/album_viewer_page.dart` (+2 -3) 📝 `mobile/lib/modules/album/views/asset_selection_page.dart` (+1 -1) 📝 `mobile/lib/modules/album/views/create_album_page.dart` (+26 -14) 📝 `mobile/lib/modules/album/views/library_page.dart` (+1 -3) 📝 `mobile/lib/modules/album/views/select_user_for_sharing_page.dart` (+10 -3) 📝 `mobile/lib/modules/album/views/sharing_page.dart` (+9 -15) 📝 `mobile/lib/modules/asset_viewer/views/gallery_viewer.dart` (+2 -1) 📝 `mobile/lib/modules/backup/ui/album_info_card.dart` (+12 -8) 📝 `mobile/lib/modules/backup/ui/backup_info_card.dart` (+1 -1) _...and 27 more files_ </details> ### 📄 Description * Add user setting for dark mode in setting page * Styling all components with dual modes --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:50:30 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8624