gitextract_v1j42pdv/ ├── .gitignore ├── GCProgressSample/ │ ├── GCProgressSample/ │ │ ├── AlertHelperKit.swift │ │ ├── AppDelegate.swift │ │ ├── AsyncUtil.swift │ │ ├── BackgroundTransparentStyle.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MyButton.swift │ │ ├── MyStyle.swift │ │ └── ViewController.swift │ ├── GCProgressSample.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── GradientCircularProgress.xcscheme │ ├── GCProgressSampleTests/ │ │ ├── GCProgressSampleTests.swift │ │ └── Info.plist │ └── GradientCircularProgress/ │ ├── GradientCircularProgress.h │ ├── GradientCircularProgress.swift │ ├── Info.plist │ ├── Progress/ │ │ ├── Core/ │ │ │ ├── CircularProgressView.swift │ │ │ └── ProgressAtRatioView.swift │ │ ├── Elements/ │ │ │ ├── ArcView.swift │ │ │ ├── Background.swift │ │ │ ├── GradientArcView.swift │ │ │ ├── GradientArcWithClearColorView.swift │ │ │ └── WindowBuilder.swift │ │ ├── ProgressView.swift │ │ ├── ProgressViewController.swift │ │ └── Property.swift │ ├── Styles/ │ │ ├── BlueDarkStyle.swift │ │ ├── BlueIndicatorStyle.swift │ │ ├── GreenLightStyle.swift │ │ ├── OrangeClearStyle.swift │ │ └── Style.swift │ └── Utils/ │ └── ColorUtil.swift ├── GradientCircularProgress.podspec ├── LICENSE ├── README.md ├── Sample/ │ ├── BackgroundTransparentStyle.swift │ └── MyStyle.swift └── source/ ├── GradientCircularProgress.h ├── GradientCircularProgress.swift ├── Progress/ │ ├── Core/ │ │ ├── CircularProgressView.swift │ │ └── ProgressAtRatioView.swift │ ├── Elements/ │ │ ├── ArcView.swift │ │ ├── Background.swift │ │ ├── GradientArcView.swift │ │ ├── GradientArcWithClearColorView.swift │ │ └── WindowBuilder.swift │ ├── ProgressView.swift │ ├── ProgressViewController.swift │ └── Property.swift ├── Styles/ │ ├── BlueDarkStyle.swift │ ├── BlueIndicatorStyle.swift │ ├── GreenLightStyle.swift │ ├── OrangeClearStyle.swift │ └── Style.swift └── Utils/ └── ColorUtil.swift