Skip to content

Commit

Permalink
sy: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yonseeee committed Dec 23, 2024
1 parent b4ceed8 commit e1647c7
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions NameStack/NameStack/QRCode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,31 +63,7 @@ struct QRCode: View {
Spacer()
.frame(height:30)

Button(action: {
// 새로고침 기능이나 원하는 동작 추가
print("QR Code 새로고침 버튼 눌림")
}) {
HStack {

Text("QR Code 새로고침")
.font(
Font.custom("Montserrat", size: 14)
.weight(.medium)
)
.multilineTextAlignment(.center)
.foregroundColor(.white)
.frame(width: 218, height: 24, alignment: .center)
}
.frame(width: 179, height: 33, alignment: .center)
.background(Constants.GraysBlack)
.cornerRadius(30)
.shadow(color: Color(red: 0.18, green: 0.18, blue: 0.18).opacity(0.15), radius: 7.5, x: 0, y: 4)
.overlay(
RoundedRectangle(cornerRadius: 30)
.inset(by: 0.5)
.stroke(.white, lineWidth: 1)
)
}

Spacer()

}
Expand Down

0 comments on commit e1647c7

Please sign in to comment.