ProgressIndicatorView icon indicating copy to clipboard operation
ProgressIndicatorView copied to clipboard

An iOS progress indicator view library written in SwiftUI

Results 2 ProgressIndicatorView issues
Sort by recently updated
recently updated
newest added

```swift import SwiftUI import ProgressIndicatorView struct TestingProgress: View { @State private var isVisible:Bool = true @State private var progress:CGFloat = 0 var body: some View { ProgressIndicatorView(isVisible: $isVisible, type: .circle(progress:...

### Issue 1. Circle progress view starts at 90 deg for progress value 0 #9 ### Fix Making start point and end point consistent by adding -.pi/2 to end point.