크리에이터 채널 - 콘텐츠 영역 추가

This commit is contained in:
Yu Sung
2023-08-20 20:36:17 +09:00
parent 154b5826c6
commit a5b954ada2
6 changed files with 204 additions and 2 deletions

View File

@@ -88,6 +88,17 @@ struct UserProfileView: View {
}
}
if creatorProfile.contentList.count > 0 ||
userId == UserDefaults.int(forKey: .userId)
{
UserProfileContentView(
userId: userId,
items: creatorProfile.contentList
)
.padding(.top, 46.7)
.padding(.horizontal, 13.3)
}
if creatorProfile.liveRoomList.count > 0 {
UserProfileLiveView(
userId: userId,