Tag: SwiftUI/ボタン
Button("Button") {
    // action
}
Button(action: {
    // action
}) {
    HStack {
        Image(systemName: "suit.heart.fill")
        Text("Button")
    }
}
Button(action: {
    // action
}) {
    VStack {
        Image(systemName: "suit.heart.fill")
        Text("Button")
    }
}