Skip to content

Hey All! As it is obvious from the GIF, this project is a LoadingIndicator based on CoreAnimation.

Notifications You must be signed in to change notification settings

VamshiIITBHU14/VKProgressHud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

VKProgressHud

pk

Hey All! As it is obvious from the GIF, this project is a LoadingIndicator based on CoreAnimation.

The Usage is like real simple:
Download the code and drag-drop VKProgressHud.Swift in your project.

Then add a variable var hudView : VKProgressHud? in your Class.

Showing Hud:

hudView = VKProgressHud(crocImageName: "croc")
hudView?.showHUD(onView: self.view)

Please note that croc is the name of Image you want in the Animation.

Hiding Hud:

hudView?.hideHUD()

Editable Properties:

  1. Image in the Animator.
  2. Radius of animator from the variable named refreshRadius in VKProgressHud.Swift.
  3. Size of the dot from the variable named dotLength in VKProgressHud.Swift.
  4. Spacing of the dots from the variable named instanceCount in VKProgressHud.Swift.
  5. Duration of the animation from the variable named animationDuration in VKProgressHud.Swift.
  6. Also the colour codes from the line circle.backgroundColor in VKProgressHud.Swift.
  7. Label text saying 'Loading' can be edited in in VKProgressHud.Swift.

Concepts used:

let rotatorImageLayer: CALayer = CALayer()
let replicatorCircleLayer = CAReplicatorLayer()
var circle = CALayer()
var shapeLayerForCroc = CAShapeLayer()
let gradientLabelLayer = CAGradientLayer()

Crocodile Image : Designed by Freepik from www.flaticon.com
Animation: Heavily inspired from https://dribbble.com/shots/2679536-Dragon-Loading-Indicator