[Add] FCVideo 3.2.21
[CocoaPods.git] / Specs / 3 / a / 1 / GlowingView / 0.0.1 / GlowingView.podspec.json
blob7aaa5b3ea049a3e207ae19894e0467d078da45d3
2   "name": "GlowingView",
3   "version": "0.0.1",
4   "summary": "A UIView extension adds customisable glow effect based on CALayer shadows.",
5   "description": "GlowingView\n===\n\nA UIView extension adds customisable glow effect based on CALayer shadows.\n\nDemo\n----\n\n![alt tag]()\n\n#### Try\n\n``` sh\npod try GlowingView\n```\n\nRequirements\n----\n\n* Xcode 8+\n* Swift 3+\n* iOS 10+\n\nInstall\n----\n\n``` ruby\nuse_frameworks!\npod 'GlowingView'\n```\n\nUsage\n----\n\nCall `startGlowing` function with optional paramaters to fit your glowing needs.\nCall `stopGlowing` function to stop glowing effect.\n\nGlowingView adds a private glowing layer top of the target view with CALayer shadows and CABasicAnimation animations.\n\n\n#### Start Glow Signature\n\n```\n  public func startGlowing(\n    color: UIColor = .white,\n    fromIntensity: CGFloat = 0,\n    toIntensity: CGFloat = 1,\n    fill: Bool = false,\n    position: CGPoint? = nil,\n    duration: TimeInterval = 1,\n    repeat shouldRepeat: Bool = true)\n```\n\n#### Demo usage\n\n```\nglowImageView?.startGlowing(\n  color: .green,\n  duration: 0.5)\n\nfillGlowImageView?.startGlowing(\n  color: .red,\n  toIntensity: 0.4,\n  fill: true,\n  duration: 0.8)\n```",
6   "homepage": "https://github.com/cemolcay/GlowingView",
7   "license": "MIT",
8   "authors": {
9     "cemolcay": "ccemolcay@gmail.com"
10   },
11   "platforms": {
12     "ios": "10.0",
13     "tvos": "10.0"
14   },
15   "source": {
16     "git": "https://github.com/cemolcay/GlowingView.git",
17     "tag": "0.0.1"
18   },
19   "source_files": "GlowingView/GlowingView.swift",
20   "requires_arc": true