라이브 UI 변경

This commit is contained in:
Yu Sung
2024-01-18 17:32:14 +09:00
parent 7ce5a36172
commit 01833fbc1f
37 changed files with 1763 additions and 1135 deletions

View File

@@ -46,7 +46,7 @@ struct LiveRoomProfileDialog: View {
if profileInfo.role == .LISTENER, let onClickInviteSpeaker = onClickInviteSpeaker {
Text("스피커로 초대")
.font(.custom(Font.medium.rawValue, size: 10))
.foregroundColor(Color(hex: "9970ff"))
.foregroundColor(.button)
.padding(.horizontal, 15.4)
.padding(.vertical, 8.3)
.background(Color.white)
@@ -61,7 +61,7 @@ struct LiveRoomProfileDialog: View {
let onClickChangeListener = onClickChangeListener {
Text("리스너로 변경")
.font(.custom(Font.medium.rawValue, size: 10))
.foregroundColor(Color(hex: "9970ff"))
.foregroundColor(.button)
.padding(.horizontal, 15.4)
.padding(.vertical, 8.3)
.background(Color.white)
@@ -79,7 +79,7 @@ struct LiveRoomProfileDialog: View {
}
.padding(20)
.frame(width: screenSize().width - 53.4)
.background(Color(hex: "9970ff"))
.background(Color.button)
.cornerRadius(16.7)
}
}