-
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.
* feat: useCase 추가 및 userEndpoint 수정 * feat: router 추가 및 view에 viewModel 데이터 연결 (#36) * feat: mainTabRouter 수정중(#36) * feat: user api 디코딩 에러 수정 (#36) * feat: memeList 아이템 클릭 후 memeDetail로 넘어가기와 copy button hander 추가 (#36) * feat: tabRouter에 mypage 연결 (#36) * feat: 레벨 달성 조건 이미지 수정 (#36) * etc: 파일 위치 변경 (#36) * feat: HorizontalMimScrollView 클릭액션 추가 (#36) * etc: test device id 추가 (#36) * etc: 사용하지 않는 mainTabViewModel 삭제 (#36)
- Loading branch information
Showing
32 changed files
with
690 additions
and
203 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
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
26 changes: 26 additions & 0 deletions
26
Projects/Core/DesignSystem/Sources/View/Meme/MemeListEmptyView.swift
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,26 @@ | ||
// | ||
// MemeListEmptyView.swift | ||
// DesignSystem | ||
// | ||
// Created by 장혜령 on 2024/07/15. | ||
// | ||
|
||
import SwiftUI | ||
import ResourceKit | ||
|
||
public struct MemeListEmptyView: View { | ||
let description: String | ||
|
||
public init(description: String) { | ||
self.description = description | ||
} | ||
|
||
public var body: some View { | ||
Text(description) | ||
.font(Font.Body.Large.medium) | ||
.foregroundStyle(Color.Text.assistive) | ||
.padding(.top, 50) | ||
.padding(.bottom, 102) | ||
} | ||
} | ||
|
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
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
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.