diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Home/HomeView.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Home/HomeView.swift index 322cdfc9..8f9ab938 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Home/HomeView.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Home/HomeView.swift @@ -73,8 +73,8 @@ private struct HeaderLogoView: View { .frame(width: 116.adjustedW, height: 40.adjustedH) Spacer() } - .padding(.leading, 32.adjustedW) - .padding(.top, 40.adjustedH) + .padding(.leading, 25.adjustedW) + .padding(.top, 26.adjustedH) } } @@ -95,6 +95,8 @@ private struct ChallengeCardEmptyView: View { .padding(.leading, 18.adjustedW) Image(challengeBarImageName) + .resizable() + .aspectRatio(contentMode: .fit) .padding(.top, 10.adjustedH) .padding(.horizontal, 18.adjustedW) @@ -155,7 +157,10 @@ private struct ChallengeCardView: View { .padding(.leading, 18.adjustedW) Image(challengeBarImageName) + .resizable() + .aspectRatio(contentMode: .fit) .padding(.top, 16.adjustedH) + .padding(.horizontal, 18.adjustedW) } .frame(height: 131.adjustedH) .frame(maxWidth: .infinity) @@ -242,7 +247,7 @@ private struct PlanBoxView: View { private var emptyStateView: some View { HStack { - TypographyText("진행 중인 일정이 없어요", style: .body1_r_14, color: .gray600) + TypographyText("진행 중인 일정이 없어요", style: .body1_m_14, color: .gray600) Spacer() } .padding(.vertical, 12.adjustedH) diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/InformationView.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/InformationView.swift index 3f973fcc..f2273c81 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/InformationView.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/InformationView.swift @@ -91,6 +91,7 @@ struct InformationView: View { .padding(.horizontal, 25.adjustedW) .padding(.bottom, 38.adjustedH) } + .ignoresSafeArea(.keyboard) .contentShape(Rectangle()) .onTapGesture { isNameFocused = false diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingContainerView.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingContainerView.swift index 6415def0..c0577bdd 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingContainerView.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingContainerView.swift @@ -20,7 +20,7 @@ struct OnboardingContainerView: View { TabView(selection: $currentPage) { OnboardingPage1() .tag(0) - .padding(.bottom, 20.adjustedH) + .padding(.bottom, 40.adjustedH) OnboardingPage2() .tag(1) } diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage1.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage1.swift index 4a27a56f..e5cf2b57 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage1.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage1.swift @@ -8,26 +8,28 @@ import SwiftUI struct OnboardingPage1: View { + @State private var line1Width: CGFloat = 0 + var body: some View { VStack(spacing: 0) { Image(.illustrationOnboardingCal) .resizable() .scaledToFit() - .frame(width: 294.adjustedW) + .frame(width: 294.adjustedW, height: 254.adjustedH) .overlay(alignment: .topLeading) { Image(.illustrationOnboardingCh) .resizable() .scaledToFit() - .frame(width: 152.adjustedW) - .offset(x: 152.adjustedW, y: 180.adjustedH) + .frame(width: 152.adjustedW, height: 204.adjustedH) + .offset(x: 152.adjustedW, y: 209.adjustedH) } - .padding(.top, 92.adjustedH) + .padding(.top, 102.adjustedH) HStack(spacing: 0) { Image(.comment) .resizable() .scaledToFit() - .frame(width: 100.adjustedW) + .frame(width: 100.adjustedW, height: 44.adjustedH) .padding(.top, 120.adjustedH) .padding(.leading, 30.adjustedW) @@ -40,20 +42,34 @@ struct OnboardingPage1: View { Rectangle() .fill(Color.red700) - .frame(width: 252.adjustedW, height: 1.4) + .frame(width: line1Width, height: 1.4) .padding(.leading, 4.adjustedW) Rectangle() - .fill(Color.red700) - .frame(width: 260.adjustedW, height: 1.4) + .fill(Color.red700) + .frame(width: line1Width + 8, height: 1.4) .padding(.top, 3.adjustedH) TypographyText("일정을 한 눈에 정리해드려요", style: .title1_sb_18, color: .gray1000) .padding(.top, 6.adjustedH) } - .padding(.top, 7.adjustedH) .frame(maxWidth: .infinity) + .background( + VStack(alignment: .leading, spacing: 0) { + TypographyText("시술 후 불편감이 남을 수 있는 기간", style: .title1_sb_18, color: .clear) + .background( + GeometryReader { geometry in + Color.clear.preference(key: Line1WidthKey.self, value: geometry.size.width) + } + ) + } + .opacity(0) + ) + .onPreferenceChange(Line1WidthKey.self) { width in + line1Width = width + } Spacer() } + .padding(.top, 7.adjustedH) Spacer() diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage2.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage2.swift index b031d4cb..1e24c4a8 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage2.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Onboarding/OnboardingPage2.swift @@ -17,22 +17,26 @@ struct OnboardingPage2: View { var body: some View { VStack(spacing: 0) { HStack(spacing: 0) { - TypographyText("원하는 추구미에 도달할 수 있도록\nTO-DO 루틴을 제시해줘요", style: .title1_m_18, color: .gray1000) + TypographyText("원하는 추구미에 도달할 수 있도록\nTO-DO 루틴을 제시해줘요", style: .title1_sb_18, color: .gray1000) + .fixedSize(horizontal: false, vertical: true) Spacer() } .padding(.horizontal, 42.adjustedW) - .padding(.top, 104.adjustedH) + .padding(.top, 124.adjustedH) + + Spacer() + .frame(height: 40.adjustedH) Image(.onboarding2) .resizable() .scaledToFit() - .padding(.top, 40.adjustedH) + .frame(width: 293.adjustedW, height: 202.adjustedH) .padding(.horizontal, 41.adjustedW) InfiniteLevelCarousel(levelImages: levelImages, animationDuration: animationDuration) .frame(height: 89.adjustedH) - .padding(.top, 20.adjustedH) + .padding(.top, 12.adjustedH) TypographyText("TO-DO 미션을 채울때마다 아리가 변화해요!", style: .title2_r_16, color: .gray600) .padding(.top, 30.adjustedH) diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/CherrishPicker.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/CherrishPicker.swift index 952eb7ee..7caf9b69 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/CherrishPicker.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/CherrishPicker.swift @@ -10,7 +10,7 @@ import UIKit struct CherrishPicker: View { @Binding var selection: Int - let range: ClosedRange + var range: ClosedRange = 0...30 var width: CGFloat = 74.adjustedW var body: some View { diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/PreferenceKey.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/PreferenceKey.swift index affb3d05..3230c784 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/PreferenceKey.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Global/Components/PreferenceKey.swift @@ -20,3 +20,10 @@ struct ScrollBottomPreferenceKey: PreferenceKey { value = max(value, nextValue()) } } + +struct Line1WidthKey: PreferenceKey { + static var defaultValue: CGFloat = 0 + static func reduce(value: inout CGFloat, nextValue: () -> CGFloat) { + value = nextValue() + } +} diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/Contents.json b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/Contents.json index 247f6747..b54d4d9a 100644 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/Contents.json +++ b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/Contents.json @@ -1,8 +1,19 @@ { "images" : [ { - "filename" : "cherrish_logo.svg", - "idiom" : "universal" + "filename" : "logo.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "logo@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "logo@3x.png", + "idiom" : "universal", + "scale" : "3x" } ], "info" : { diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/cherrish_logo.svg b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/cherrish_logo.svg deleted file mode 100644 index 5f21310d..00000000 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/cherrish_logo.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo.png new file mode 100644 index 00000000..ab06679e Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo.png differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo@2x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo@2x.png new file mode 100644 index 00000000..47f7f531 Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo@2x.png differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo@3x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo@3x.png new file mode 100644 index 00000000..7b737eb6 Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/cherrish_logo.imageset/logo@3x.png differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/Contents.json b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/Contents.json deleted file mode 100644 index caf2c136..00000000 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "filename" : "home_lv.0.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "filename" : "home_lv.0@2x.png", - "idiom" : "universal", - "scale" : "2x" - }, - { - "filename" : "home_lv.0@3x.png", - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/Contents.json b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/Contents.json index 55010d63..caf2c136 100644 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/Contents.json +++ b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/Contents.json @@ -1,17 +1,17 @@ { "images" : [ { - "filename" : "home_lv.1.png", + "filename" : "home_lv.0.png", "idiom" : "universal", "scale" : "1x" }, { - "filename" : "home_lv.1@2x.png", + "filename" : "home_lv.0@2x.png", "idiom" : "universal", "scale" : "2x" }, { - "filename" : "home_lv.1@3x.png", + "filename" : "home_lv.0@3x.png", "idiom" : "universal", "scale" : "3x" } diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/home_lv.0.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.0.png similarity index 100% rename from Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/home_lv.0.png rename to Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.0.png diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/home_lv.0@2x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.0@2x.png similarity index 100% rename from Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/home_lv.0@2x.png rename to Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.0@2x.png diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/home_lv.0@3x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.0@3x.png similarity index 100% rename from Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.0.imageset/home_lv.0@3x.png rename to Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.0@3x.png diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/Contents.json b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/Contents.json index df89b655..55010d63 100644 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/Contents.json +++ b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/Contents.json @@ -1,17 +1,17 @@ { "images" : [ { - "filename" : "home_lv.2.png", + "filename" : "home_lv.1.png", "idiom" : "universal", "scale" : "1x" }, { - "filename" : "home_lv.2@2x.png", + "filename" : "home_lv.1@2x.png", "idiom" : "universal", "scale" : "2x" }, { - "filename" : "home_lv.2@3x.png", + "filename" : "home_lv.1@3x.png", "idiom" : "universal", "scale" : "3x" } diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.1.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.1.png similarity index 100% rename from Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.1.png rename to Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.1.png diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.1@2x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.1@2x.png similarity index 100% rename from Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.1@2x.png rename to Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.1@2x.png diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.1@3x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.1@3x.png similarity index 100% rename from Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.1.imageset/home_lv.1@3x.png rename to Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.1@3x.png diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2.png deleted file mode 100644 index 9a15b58d..00000000 Binary files a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2.png and /dev/null differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2@2x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2@2x.png deleted file mode 100644 index 3ec1c94a..00000000 Binary files a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2@2x.png and /dev/null differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2@3x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2@3x.png deleted file mode 100644 index 22e7cf86..00000000 Binary files a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/home_icon/home_lv.2.imageset/home_lv.2@3x.png and /dev/null differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Contents.json b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Contents.json index d4e54c51..2a9e5163 100644 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Contents.json +++ b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Contents.json @@ -1,15 +1,17 @@ { "images" : [ { - "filename" : "comment.svg", + "filename" : "Group 2085667425.png", "idiom" : "universal", "scale" : "1x" }, { + "filename" : "Group 2085667425@2x.png", "idiom" : "universal", "scale" : "2x" }, { + "filename" : "Group 2085667425@3x.png", "idiom" : "universal", "scale" : "3x" } diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425.png new file mode 100644 index 00000000..62f52c61 Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425.png differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425@2x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425@2x.png new file mode 100644 index 00000000..964ff4bc Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425@2x.png differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425@3x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425@3x.png new file mode 100644 index 00000000..975250d4 Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/Group 2085667425@3x.png differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/comment.svg b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/comment.svg deleted file mode 100644 index de0dc321..00000000 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/comment.imageset/comment.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/Contents.json b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/Contents.json index 6ae48f1d..21031279 100644 --- a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/Contents.json +++ b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/Contents.json @@ -6,10 +6,12 @@ "scale" : "1x" }, { + "filename" : "illustration_onboarding_ch3.png", "idiom" : "universal", "scale" : "2x" }, { + "filename" : "illustration_onboarding_ch@3x.png", "idiom" : "universal", "scale" : "3x" } diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/illustration_onboarding_ch3.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/illustration_onboarding_ch3.png new file mode 100644 index 00000000..8273c99b Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/illustration_onboarding_ch3.png differ diff --git a/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/illustration_onboarding_ch@3x.png b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/illustration_onboarding_ch@3x.png new file mode 100644 index 00000000..c31975cd Binary files /dev/null and b/Cherrish-iOS/Cherrish-iOS/Resources/Assets.xcassets/onboadrding/illustration_onboarding_ch.imageset/illustration_onboarding_ch@3x.png differ