ConcaveProgressView

1.0.0

A curved progress view written in SwiftUI.
MrAsterisco/ConcaveProgressView

What's New

1.0.0

2022-06-03T14:15:01Z

First public release

ConcaveProgressView

A slightly curved progress view written in SwiftUI.

Screenshot on an Apple Watch

Installation

ConcaveProgressView is available through Swift Package Manager.

.package(url: "https://github.com/MrAsterisco/ConcaveProgressView", from: "<see GitHub releases>")

Latest Release

To find out the latest version, look at the Releases tab of this repository.

Usage

You can use ConcaveProgressView as you would normally use a ProgressView with a determinate value. Styling is supported for changing the foreground and background color, as well as the animation and the bar stroke style.

@State private var progress = 0.5

var body: some View {
  ConcaveProgressBar(value: progress)
    .barStyle(.init(lineWidth: 8, lineCap: .round, lineJoin: .round))
    .foreground(.red)
    .background(.gray)
}

Compatibility

ConcaveProgressView requires iOS 13.0 or later, macOS 10.15 or later, watchOS 6.0 or later and tvOS 13.0 or later.

Contributions

All contributions to expand the library are welcome. Fork the repo, make the changes you want, and open a Pull Request.

If you make changes to the codebase, I am not enforcing a coding style, but I may ask you to make changes based on how the rest of the library is made.

Status

This library is under active development. Even if most of the APIs are pretty straightforward, they may change in the future; but you don't have to worry about that, because releases will follow Semantic Versioning 2.0.0.

License

ConcaveProgressView is distributed under the MIT license. See LICENSE for details.

Description

  • Swift Tools 5.6.0
View More Packages from this Author

Dependencies

Last updated: Fri Mar 15 2024 03:42:22 GMT-0900 (Hawaii-Aleutian Daylight Time)