버튼 커스텀화하기, Custom ButtonStyle
·
SwiftUI
버튼의 스타일을 커스텀화할 수 있습니다 다음은 커스텀화 하기 전에 버튼의 코드입니다.Button(action: {}, label: { Text("Button") .font(.headline) .foregroundStyle(.white) .frame(height: 55) .frame(maxWidth: .infinity) .background(Color.blue) .clipShape(RoundedRectangle(cornerRadius: 10)) .shadow(color: Color.blue.opacity(0.3), radius: 10, x: 0.0, y: 10.0)})하지만 커스텀화 후에 버튼 코드는 간단합니..