| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
467 バイト追加 、 2021年4月24日 (土) 23:27
.background(Color.green)
.padding()
</pre>
===ボタンサイズ===
----
*ボタンのサイズを内容にフィットさせたい
[[File:swiftui_button_size1.png]]
<pre>
Button(action: {}) {
VStack{
:
}
.padding()
.border(Color.blue, width: 3)
}
</pre>
*.buttonStyle(PlainButtonStyle()) を指定
[[File:swiftui_button_size2.png]]
<pre>
Button(action: {}) {
VStack{
:
}
.padding()
.border(Color.blue, width: 3)
}.buttonStyle(PlainButtonStyle())
</pre>

案内メニュー