ProgressIndicator
ProgressIndicator copied to clipboard
Collection of progress indicators in SwiftUI which supports iOS 13.
Progress Indicator

We don't have a native progress view in the initial release of SwiftUI which supports iOS 13. We need to write our custom logic to add loading or progress view indicators in the app. Here you can find the collection of simple progress view indicators.
Arc:

Arc(progress: progress)
Bar:

Bar(progress: progress)
Circular:

Circular(progress: progress)
Filled Circle:

FilledCircle(radius: 100, progress: progress)
Note: You can apply any modifiers as like a normal view
For example, it shows a circular progress view with 200 * 200 size,
Circular(progress: progress)
.frame(width: 200, height: 200, alignment: .center)
Thanks 👨🏻💻