---
title: "progressViewStyle(_:)"
framework: swiftui
role: symbol
role_heading: Instance Method
path: "swiftui/view/progressviewstyle(_:)"
---

# progressViewStyle(_:)

Sets the style for progress views in this view.

## Declaration

```swift
nonisolated func progressViewStyle<S>(_ style: S) -> some View where S : ProgressViewStyle

```

## Parameters

- `style`: The progress view style to use for this view.

## Discussion

Discussion For example, the following code creates a progress view that uses the “circular” style: ProgressView()     .progressViewStyle(.circular)

## See Also

### Indicating a value

- [Gauge](swiftui/gauge.md)
- [gaugeStyle(_:)](swiftui/view/gaugestyle(_:).md)
- [ProgressView](swiftui/progressview.md)
- [DefaultDateProgressLabel](swiftui/defaultdateprogresslabel.md)
- [DefaultButtonLabel](swiftui/defaultbuttonlabel.md)
