forked from Team-ShortcutsZip/MacC-Team-HappyAnding
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Team-ShortcutsZip#525 from JMM00/feature/518-Explo…
…reShortcutView [Feat] Team-ShortcutsZip#518 ExploreShortcutView공통 익스텐션 적용 및 모델 확장
- Loading branch information
Showing
15 changed files
with
345 additions
and
242 deletions.
There are no files selected for viewing
This file contains 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
38 changes: 38 additions & 0 deletions
38
HappyAnding/HappyAnding/Assets.xcassets/Colors/CharcoalGray.colorset/Contents.json
This file contains 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,38 @@ | ||
{ | ||
"colors" : [ | ||
{ | ||
"color" : { | ||
"color-space" : "srgb", | ||
"components" : { | ||
"alpha" : "1.000", | ||
"blue" : "0x40", | ||
"green" : "0x40", | ||
"red" : "0x40" | ||
} | ||
}, | ||
"idiom" : "universal" | ||
}, | ||
{ | ||
"appearances" : [ | ||
{ | ||
"appearance" : "luminosity", | ||
"value" : "dark" | ||
} | ||
], | ||
"color" : { | ||
"color-space" : "srgb", | ||
"components" : { | ||
"alpha" : "1.000", | ||
"blue" : "0x40", | ||
"green" : "0x40", | ||
"red" : "0x40" | ||
} | ||
}, | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
This file contains 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,20 @@ | ||
// | ||
// View+Shadow.swift | ||
// HappyAnding | ||
// | ||
// Created by HanGyeongjun on 4/5/24. | ||
// | ||
|
||
import SwiftUI | ||
|
||
extension View { | ||
|
||
///View에 Drop Shadow를 적용합니다. | ||
///모든 View에서 사용되는 값에 변화가 없어 매개변수는 없습니다. | ||
func dropShadow() -> some View { | ||
self.shadow(color: Color("CharcoalGray").opacity(0.04), | ||
radius: 8, | ||
x: 0, | ||
y: 2) | ||
} | ||
} |
This file contains 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 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 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 |
---|---|---|
|
@@ -31,7 +31,7 @@ enum TextLiteral { | |
static let appStoreUrl: String = "itms-apps://itunes.apple.com/app/6444001181" | ||
|
||
// MARK: - ExploreShortcutView | ||
static let exploreShortcutViewTitle: String = "단축어 둘러보기" | ||
static let exploreShortcutViewTitle: String = "둘러보기" | ||
|
||
//MARK: - announcementCell | ||
static let newFeatureTag: String = "새로운 기능" | ||
|
@@ -67,7 +67,7 @@ enum TextLiteral { | |
static let categoryViewFold: String = "접기" | ||
|
||
// MARK: - MyShortcutCardListView | ||
static let myShortcutCardListViewTitle: String = "내가 작성한 단축어" | ||
static let myShortcutCardListViewTitle: String = "작성한 단축어" | ||
|
||
// MARK: - ValidationCheckTextField | ||
static let validationCheckTextFieldInvalid: String = "단축어 링크가 아니에요" | ||
|
@@ -226,8 +226,8 @@ enum TextLiteral { | |
// MARK: - MyPageView | ||
static let myPageViewTitle: String = "프로필" | ||
static let myPageViewMyCuration: String = "내가 작성한 추천 모음집" | ||
static let myPageViewLikedShortcuts: String = "좋아요한 단축어" | ||
static let myPageViewDownloadedShortcuts: String = "다운로드한 단축어" | ||
static let myPageViewLikedShortcuts: String = "내가 좋아요한" | ||
static let myPageViewDownloadedShortcuts: String = "다운로드한" | ||
|
||
// MARK: - MailView | ||
static let mailViewReceiver: String = "[email protected]" | ||
|
This file contains 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
Oops, something went wrong.