I'm trying to resize a SF Symbol button in SwiftUI. I've tried .font(.system(size: 60))
and .imageScale(.medium)
but it doesn't work. It still has this same error. This is my code:
var buttons: [Button<Image>] = [
Button(action: {
print("Add tapped")
}) {
Image(systemName: "plus.circle.fill")
}
]