비밀후원 체크박스 네모로 변경
This commit is contained in:
parent
468a876e33
commit
30a480232b
|
@ -88,13 +88,13 @@ struct LiveRoomDonationDialogView: View {
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
||||||
HStack(spacing: 8) {
|
HStack(spacing: 8) {
|
||||||
Image(isSecret ? "btn_select_checked" : "btn_select_normal")
|
Image(isSecret ? "btn_square_select_checked" : "btn_square_select_normal")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 20, height: 20)
|
.frame(width: 20, height: 20)
|
||||||
|
|
||||||
Text("비밀후원")
|
Text("비밀후원")
|
||||||
.font(.custom(Font.medium.rawValue, size: 14.7))
|
.font(.custom(Font.medium.rawValue, size: 14.7))
|
||||||
.foregroundColor(Color.grayee)
|
.foregroundColor(isSecret ? Color.button : Color.grayee)
|
||||||
}
|
}
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
isSecret.toggle()
|
isSecret.toggle()
|
||||||
|
|
Loading…
Reference in New Issue