콘텐츠 플레이어

- 재생목록 보일 때 제목과 크리에이터 영역까지 재생목록이 차지하도록 수정
This commit is contained in:
Yu Sung 2025-02-26 16:57:48 +09:00
parent 5f7337bcdc
commit 7b3a3d2a80
1 changed files with 22 additions and 20 deletions

View File

@ -26,6 +26,7 @@ struct ContentPlayerView: View {
.onTapGesture { isShowing = false } .onTapGesture { isShowing = false }
} }
if !playerManager.isShowPlaylist {
Text(playerManager.title) Text(playerManager.title)
.font(.custom(Font.medium.rawValue, size: 16)) .font(.custom(Font.medium.rawValue, size: 16))
.foregroundColor(.grayee) .foregroundColor(.grayee)
@ -48,6 +49,7 @@ struct ContentPlayerView: View {
Spacer() Spacer()
} }
.padding(.top, 21) .padding(.top, 21)
}
Spacer() Spacer()