feat(series-list-all): 완결시리즈 전체보기 페이지 추가

This commit is contained in:
Yu Sung
2025-11-20 17:56:43 +09:00
parent 4d5ac61dbe
commit 001f161fc5
9 changed files with 22 additions and 9 deletions

View File

@@ -32,6 +32,10 @@ struct SeriesMainHomeView: View {
Text("전체보기")
.font(.custom(Font.preRegular.rawValue, size: 14))
.foregroundColor(.init(hex: "78909C"))
.onTapGesture {
AppState.shared
.setAppStep(step: .seriesAll(isCompleted: true))
}
}
.padding(.horizontal, 24)

View File

@@ -92,6 +92,7 @@ struct SeriesMainItemView: View {
.font(.custom(Font.preRegular.rawValue, size: 18))
.foregroundColor(Color(hex: "B0BEC5"))
.lineLimit(1)
.multilineTextAlignment(.leading)
.padding(.horizontal, 8)
Text(item.creator.nickname)