• This repository has been archived on 19/Jan/2022
  • Stars
    star
    1,725
  • Rank 27,045 (Top 0.6 %)
  • Language
    Swift
  • License
    MIT License
  • Created about 8 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A circular progress bar for iOS written in Swift

UICircularProgressRing

UICircularProgress ring is a library for rendering circular progress rings and timers.

  • Declarative: Written using SwiftUI (legacy UIKit version available), UICircularProgressRing is declarative making it easy to read, and easy to use.
  • Customizable: Designed to be used in production, all of the views are highly customizable without giving up ease of use. This allows the developer to tailor the look, feel and functionality to fit their needs.
  • Tested: Battle tested in many production applications. UICircularProgressRing is also fully unit tested as well as snapshot tested so developers can feel safe.
  • Documented: UICircularProgressRing's public API is 100% documented and its something that is enforced before any code is ever added. This is a resource that will help any new user understand how to get the most out of this library.

iOS 14+ Note

Since Apple has now added a built in ProgressView the need for this library is about to be over. My recommendation: If you can support iOS 14.0 and use the new system ProgressView then you should use that. This library will be continued to be maintained (critical bugs will be fixed, etc) but no new features are planned as we are reaching EOL for this library.

Installation

UICircularProgressRing is available in two major versions. The latest version v7.0+ or legacy versions. The legacy version is written using UIKit and requires a deployment target of iOS 8.0+ or tvOS 10.0+. The latest version is written in SwiftUI and requires iOS 13.0+, macOS 15.0+, tvOS 13.0+ or WatchOS 2.0+.

For legacy installation, follow these instructions.

Swift Package Manager

Simply add this library to your package manifest or follow instructions on adding a package dependency using Xcode here.

.package(
    url: "https://github.com/luispadron/UICircularProgressRing.git",
    .branch("master")
)

Documentation

This projects public API is 100% documented and it's something we spend a lot of time working on. Please make sure to read the documentation before opening any issues, questions, etc.

Read the documentation πŸ“–

Usage

ProgressRing

ProgressRing is a view designed to display some kind of progress, this can be anything which is represented as a percentage in the range [0, ∞). A percentage is represented in decimal format, i.e. 0.5 is 50%. Progress may be a downloading operation, the grade percentage of a users test score, etc. A short example of using ProgressRing is shown below, for more details read the docs or play with the example app.

struct ProgressRingExample: View {
    @State var progress = RingProgress.percent(0.44)

    var body: some View {
        VStack {
            ProgressRing(
                progress: $progress,
                axis: .top,
                clockwise: true,
                outerRingStyle: .init(
                    color: .color(.gray),
                    strokeStyle: .init(lineWidth: 20)
                ),
                innerRingStyle: .init(
                    color: .color(.green),
                    strokeStyle: .init(lineWidth: 10),
                    padding: 5
                )
            )
                .animation(.easeInOut(duration: 5))
                .padding(32)
        }
    }
}

An example image of a ProgressRing view rendered with a green inner circle, a gray outer circle and at 44 percent completion.

TimerRing

TimerRing is a view designed to display time. You initialize the timer by giving it a unit of time and duration, for example: .seconds(60). This means the TimerRing will run for 60 seconds, filling up the inner ring until finally reaching 100% around the entire outer ring. A short example of using TimerRing is shown below, for more details read the docs or play with the example app.

struct TimerRingExample: View {
    @State var isPaused = false
    @State var isDone = false

    var body: some View {
        TimerRing(
            time: .minutes(1),
            delay: .seconds(0.5),
            innerRingStyle: .init(
                color: .color(.green),
                strokeStyle: .init(lineWidth: 16),
                padding: 8
            ),
            isPaused: $isTimerPaused,
            isDone: $isTimerDone
        ) { currentTime in
            Text(timeFormatter.string(from: currentTime))
                .font(.title)
                .bold()
        }
    }
}

A demo image of a timer ring view with a green inner ring, a gray outer ring and at twenty-seven seconds.

Examples

Apps Using UICircularProgressRing

More Repositories

1

UIEmptyState

An empty state control to give visually appealing context when building iOS applications.
Swift
178
star
2

LPSnackbar

A flexible and easy to use Snackbar control for iOS.
Swift
78
star
3

LPThumbnailView

A thumbnail view for iOS to give context to multiple images/videos using thumbnails and counter.
Swift
51
star
4

GradePoint

An assignment tracker and GPA calculator app for iOS
Swift
25
star
5

YouTube-Subscription-Importer

Imports subscriptions from one YouTube account to another using Python 3.
Python
15
star
6

BandLoader

Bandcamp downloading GUI tool. [DEPRECATED]
Python
13
star
7

LPIntegratedRating

Integrated rating view for iOS
Swift
7
star
8

Weatherly

Simple weather app for android
Java
3
star
9

Decaf-Lang-Syntax

Visual Studio Code syntax and language support for the Decaf programming language
3
star
10

luispadron

2
star
11

EyeBot

EyeBot
Swift
2
star
12

DailyCodingProblems

Problem solutions for some daily coding problems I either find online or get from dailycodingproblem.com
Swift
2
star
13

rules_playdate

Bazel rules for building Playdate applications in Swift and C.
Starlark
2
star
14

GithubPage

Github Page πŸ¦‘
CSS
1
star
15

Music-Recommender

Recommends music/artists to user, class project.
Java
1
star
16

Payit

Payit: an Android credit card payment reminder
Java
1
star
17

HelloRPG

Hello world RPG game using Godot.
GDScript
1
star
18

snake_game

A Snake clone written with Rust & Bevy!
Rust
1
star
19

Decaf-Lang

Decaf a "language" developed @ University of Michigan
Assembly
1
star
20

bazel-build-event-converter

A Swift command line tool designed for converting Bazel Build Event Protocol.
Starlark
1
star