-
Notifications
You must be signed in to change notification settings - Fork 2
Bugfix/72 bug 010 1차 qa UI 수정 #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sunny5875
merged 5 commits into
DDD-Community:develop
from
sunny5875:bugfix/72-bug-010-1차-qa-ui-수정
Nov 4, 2025
The head ref may contain hidden characters: "bugfix/72-bug-010-1\uCC28-qa-ui-\uC218\uC815"
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...s/Shared/DesignSystem/Resources/Image.xcassets/Home/HomeBackground.imageset/Contents.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-12.8 KB
...tem/Resources/Image.xcassets/Home/HomeBackground.imageset/[email protected]
Binary file not shown.
Binary file removed
BIN
-40.4 KB
...tem/Resources/Image.xcassets/Home/HomeBackground.imageset/[email protected]
Binary file not shown.
Binary file removed
BIN
-40.4 KB
...tem/Resources/Image.xcassets/Home/HomeBackground.imageset/[email protected]
Binary file not shown.
Binary file added
BIN
+16.8 KB
...signSystem/Resources/Image.xcassets/Home/HomeBackground.imageset/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+45.5 KB
...nSystem/Resources/Image.xcassets/Home/HomeBackground.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+79.2 KB
...nSystem/Resources/Image.xcassets/Home/HomeBackground.imageset/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 64 additions & 0 deletions
64
Projects/Shared/DesignSystem/Sources/Cells/Checklist/ChecklistColorType.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| // | ||
| // ChecklistColorType.swift | ||
| // FeatureHome | ||
| // | ||
| // Created by 현수빈 on 10/15/25. | ||
| // | ||
|
|
||
| import SwiftUI | ||
|
|
||
| public enum ChecklistColorType: Int, CaseIterable { | ||
| case blue = 0 | ||
| case green | ||
| case orange | ||
|
|
||
| public init(index: Int) { | ||
| self = ChecklistColorType(rawValue: index % ChecklistColorType.allCases.count ) ?? .blue | ||
| } | ||
|
|
||
| // MARK: - 체크리스트 색상 | ||
| var checklistColor: Color { | ||
| switch self { | ||
| case .blue: | ||
| return Color.primary050 | ||
| case .green: | ||
| return Color(hex: "EFFAF3") | ||
| case .orange: | ||
| return Color.sub050 | ||
| } | ||
| } | ||
|
|
||
| var checklistTintColor: Color { | ||
| switch self { | ||
| case .blue: | ||
| return Color.primary500 | ||
| case .green: | ||
| return Color(hex: "84E1AF") | ||
| case .orange: | ||
| return Color.sub500 | ||
| } | ||
| } | ||
|
|
||
| // MARK: - 선택 시 체크리스 색상 | ||
| var checklistSelectedColor: Color { | ||
| switch self { | ||
| case .blue: | ||
| return Color.primary100 | ||
| case .green: | ||
| return Color(hex: "E5FBEC") | ||
| case .orange: | ||
| return Color.sub100 | ||
| } | ||
| } | ||
|
|
||
| var checklistSelectedTintColor: Color { | ||
| switch self { | ||
| case .blue: | ||
| return Color.primary900 | ||
| case .green: | ||
| return Color(hex: "489C6E") | ||
| case .orange: | ||
| return Color.sub600 | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.