Skip to content

Collection of progress indicators in SwiftUI which supports iOS 13.

License

Notifications You must be signed in to change notification settings

karthironald/ProgressIndicator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Progress Indicator

Image

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:

Image

Arc(progress: progress)

Bar:

Image

Bar(progress: progress)

Circular:

Image

Circular(progress: progress)

Filled Circle:

Image

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 👨🏻‍💻

About

Collection of progress indicators in SwiftUI which supports iOS 13.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages