Skip to content

Commit

Permalink
fix #21: logo 이미지 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
0inn authored and enebin committed Aug 17, 2023
1 parent f64cc33 commit 4df7119
Showing 1 changed file with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,7 @@ public struct KeymeTestsStartView: View {
WithViewStore(store, observe: { $0 }) { viewStore in
VStack {
Spacer()
.frame(height: 10)

logoImage()

Spacer()
.frame(height: 35)
.frame(height: 75)

welcomeText(viewStore)

Expand All @@ -48,13 +43,6 @@ public struct KeymeTestsStartView: View {
}
}

func logoImage() -> some View {
// TODO: 로고로 이미지 변경 필요
return Image(systemName: "eyes.inverse")
.frame(width: 30, height: 30)
.foregroundColor(DSKitAsset.Color.keymeWhite.swiftUIColor)
}

func welcomeText(_ viewStore: ViewStore<KeymeTestsStartFeature.State, KeymeTestsStartFeature.Action>) -> some View {
Text("환영해요 \(viewStore.nickname ?? "")님!\n이제 문제를 풀어볼까요?")
.font(Font.Keyme.heading1)
Expand Down

0 comments on commit 4df7119

Please sign in to comment.