Giter VIP home page Giter VIP logo

pzcircularcontrol's Introduction

Circular Control

SwiftUI Circular Control

A custom circular progress bar made in SwiftUI.

Features

  • Highly customizable
  • Animatable
  • Updated to the latest syntax

Usage

  1. Install via Swift Package Manager
  2. Create a PZCircularControlParams object to configure the style of your control (optional)
  3. Instanciate a PZCircularControl and pass in the params

Basic example

PZCircularControl(
    PZCircularControlParams(
        innerBackgroundColor: Color.clear,
        outerBackgroundColor: Color.gray.opacity(0.5),
        tintColor: LinearGradient(gradient: Gradient(colors: [.red, .orange]), startPoint: .topLeading, endPoint: .bottomTrailing)
    )
)

This produces the following output:

Output Image

The params object's instance data can be modified and animated. For example, the following code animates the control to the 35% state when the button is tapped:

PZExampleButton(label: "35%", font: .headline) { 
    withAnimation(.easeInOut(duration: 1.0)) { 
        control.params.progress = CGFloat(0.35) 
    } 
}

More examples

Dark background (see cover image)

PZCircularControl(
    PZCircularControlParams(
        innerBackgroundColor: Color.black,
        outerBackgroundColor: Color.black,
        tintColor: LinearGradient(gradient: Gradient(colors: [.yellow, .pink]), startPoint: .bottomLeading, endPoint: .topLeading),
        textColor: .orange,
        barWidth: 24.0,
        glowDistance: 15.0,
        initialValue: CGFloat(Float.random(in: 0...1))
    )
)

Purple text and gradient fill

PZCircularControl(
    PZCircularControlParams(
        innerBackgroundColor: Color.clear,
        outerBackgroundColor: Color.gray.opacity(0.5),
        tintColor: LinearGradient(gradient: Gradient(colors: [.blue, .purple]), startPoint: .bottomLeading, endPoint: .topLeading),
        textColor: .purple,
        barWidth: 30.0,
        glowDistance: 30.0,
        initialValue: CGFloat(Float.random(in: 0...1))
    )
)

Output Image

Customization

PZCircularControlParams object is accessible through the params instance field of a PZCircularControl. Any change to the instance will be reflected on the control automatically, without the need to refresh it or reload any data.

Some customization options include:

  • progress (accessible via <<yourControlInstance>>.params.progress) – the current progress the control displays (from 0.0 to 1.0, as CGFloat).
  • glowDistance – the radius of the glow effect around the control (CGFloat). Set to 0.0 to remove the glow.
  • barWidth – the width of the stroke of the control.
  • textColor – the progress label color (as SwiftUI Color).
  • font – the progress label font (as SwiftUI Font).
  • innerBackgroundColor – the color of the inner part of your control (inner radius). Has to conform to ShapeStyle (ie. anything from Color to Gradient).
  • outerBackgroundColor – the color of the active part's background. Has to conform to ShapeStyle (ie. anything from Color to Gradient).
  • tintColor – the tint color of the active area of your control. Has to conform to ShapeStyle (ie. anything from Color to Gradient).
  • textFormatter – an optional closure that takes in a CGFloat value of the current progress between 0.0 and 1.0 and returns formatted text that will be displayed in the center of the progress bar.

License

MIT License

Copyright (c) 2019-2021 Phil Zet (a.k.a. Phil Zakharchenko)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

pzcircularcontrol's People

Contributors

philptr avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.