.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>