目次
説明
図形のパスを描画するModifierです。
宣言
func stroke(lineWidth: CGFloat = 1) -> some Shape
stroke(lineWidth:) | Apple Developer Documentation
Returns a new shape that is a stroked copy of with line-width defined by and all other properties of having their default values.
引数
- lineWidth
-
線の太さを指定します。
使用例
struct ContentView: View {
var body: some View {
Rectangle()
.stroke(lineWidth: 5)
.fill(.green)
.frame(width: 150, height: 150)
}
}