iOS/SwiftUI
[SwiftUI] Button 속성 변경(size, color, foregroundColor)
Chafle
2022. 9. 14. 21:54
반응형
Button("Roll") {
'Action'
}.font(.system(size: 50, weight: .bold))
.foregroundColor(.white)
.background(Color.red)
.padding(.horizontal)
반응형