parent
5f7337bcdc
commit
7b3a3d2a80
|
@ -26,28 +26,30 @@ struct ContentPlayerView: View {
|
||||||
.onTapGesture { isShowing = false }
|
.onTapGesture { isShowing = false }
|
||||||
}
|
}
|
||||||
|
|
||||||
Text(playerManager.title)
|
if !playerManager.isShowPlaylist {
|
||||||
.font(.custom(Font.medium.rawValue, size: 16))
|
Text(playerManager.title)
|
||||||
.foregroundColor(.grayee)
|
.font(.custom(Font.medium.rawValue, size: 16))
|
||||||
.frame(maxWidth: .infinity, alignment: .leading)
|
.foregroundColor(.grayee)
|
||||||
.padding(.top, 16)
|
.frame(maxWidth: .infinity, alignment: .leading)
|
||||||
|
.padding(.top, 16)
|
||||||
|
|
||||||
HStack(spacing: 5.3) {
|
HStack(spacing: 5.3) {
|
||||||
KFImage(URL(string: playerManager.creatorProfileUrl))
|
KFImage(URL(string: playerManager.creatorProfileUrl))
|
||||||
.cancelOnDisappear(true)
|
.cancelOnDisappear(true)
|
||||||
.downsampling(size: CGSize(width: 26.7, height: 26.7))
|
.downsampling(size: CGSize(width: 26.7, height: 26.7))
|
||||||
.resizable()
|
.resizable()
|
||||||
.scaledToFill()
|
.scaledToFill()
|
||||||
.frame(width: 26.7, height: 26.7)
|
.frame(width: 26.7, height: 26.7)
|
||||||
.clipShape(Circle())
|
.clipShape(Circle())
|
||||||
|
|
||||||
Text(playerManager.nickname)
|
Text(playerManager.nickname)
|
||||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||||
.foregroundColor(.gray90)
|
.foregroundColor(.gray90)
|
||||||
|
|
||||||
Spacer()
|
Spacer()
|
||||||
|
}
|
||||||
|
.padding(.top, 21)
|
||||||
}
|
}
|
||||||
.padding(.top, 21)
|
|
||||||
|
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue