protocol ProgressViewStyle
A type that applies standard interaction behavior to all progress views within a view hierarchy.
ある型、それは標準相互作用挙動をあるビュー階層内の全てのプログレスビューに適用するものです。
Availability 有効性
Technology
func progressViewStyle<S>(_ style: S) -> some View
where S : ProgressViewStyle
style
The progress view style to use for this view.
For example, the following code creates a progress view that uses the “circular” style:
ProgressView()
.progressViewStyle(.circular)
protocol ProgressViewStyle