#author("2022-10-19T05:05:29+00:00","default:src128","src128") #author("2022-10-19T05:05:51+00:00","default:src128","src128") &tag(SwiftUI/ボタン); *目次 [#u395849d] #contents *関連ページ [#m46199fe] *参考情報 [#w062f22e] -[[SwiftUIのButtonでテキストのみ、テキスト+画像のボタンを作る - Qiita:https://qiita.com/Masataka-n/items/760b56807322478285b6]] *いろいろなボタン [#l8debee5] **テキストのみ [#o125c285] -普通に作る。 #pre{{ Button("Button") { // action } }} **テキスト+画像 [#f9636bbc] -横並びの場合。 #pre{{ Button(action: { // action }) { HStack { Image(systemName: "suit.heart.fill") Text("Button") } } }} -縦並びの場合。 #pre{{ Button(action: { // action }) { VStack { Image(systemName: "suit.heart.fill") Text("Button") } } }}