├── .gitignore ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── .travis.yml ├── AnimatedGradientView.podspec ├── AnimatedGradientView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── AnimatedGradientDirection.swift │ ├── AnimatedGradientView.swift │ ├── AnimatedGradientViewAnimation.swift │ ├── AnimatedGradientViewColor.swift │ └── Extensions │ ├── Collection+UniqueMap.swift │ ├── RegularExpressionMatchable.swift │ └── String+RegularExpressionMatchable.swift ├── CHANGELOG.md ├── Example ├── AnimatedGradientView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── AnimatedGradientView-Example.xcscheme ├── AnimatedGradientView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AnimatedGradientView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── AnimatedGradientView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── AnimatedGradientView.xcscheme │ └── Target Support Files │ │ ├── AnimatedGradientView │ │ ├── AnimatedGradientView-dummy.m │ │ ├── AnimatedGradientView-prefix.pch │ │ ├── AnimatedGradientView-umbrella.h │ │ ├── AnimatedGradientView.modulemap │ │ ├── AnimatedGradientView.xcconfig │ │ └── Info.plist │ │ ├── Pods-AnimatedGradientView_Example │ │ ├── Info.plist │ │ ├── Pods-AnimatedGradientView_Example-acknowledgements.markdown │ │ ├── Pods-AnimatedGradientView_Example-acknowledgements.plist │ │ ├── Pods-AnimatedGradientView_Example-dummy.m │ │ ├── Pods-AnimatedGradientView_Example-frameworks.sh │ │ ├── Pods-AnimatedGradientView_Example-resources.sh │ │ ├── Pods-AnimatedGradientView_Example-umbrella.h │ │ ├── Pods-AnimatedGradientView_Example.debug.xcconfig │ │ ├── Pods-AnimatedGradientView_Example.modulemap │ │ └── Pods-AnimatedGradientView_Example.release.xcconfig │ │ └── Pods-AnimatedGradientView_Tests │ │ ├── Info.plist │ │ ├── Pods-AnimatedGradientView_Tests-acknowledgements.markdown │ │ ├── Pods-AnimatedGradientView_Tests-acknowledgements.plist │ │ ├── Pods-AnimatedGradientView_Tests-dummy.m │ │ ├── Pods-AnimatedGradientView_Tests-frameworks.sh │ │ ├── Pods-AnimatedGradientView_Tests-resources.sh │ │ ├── Pods-AnimatedGradientView_Tests-umbrella.h │ │ ├── Pods-AnimatedGradientView_Tests.debug.xcconfig │ │ ├── Pods-AnimatedGradientView_Tests.modulemap │ │ └── Pods-AnimatedGradientView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Package.swift ├── README.md ├── _Pods.xcodeproj ├── docs └── images │ ├── animated-gradient-view-banner.png │ ├── animated-gradient-view-large-logo.png │ ├── animated-gradient-view-logo.png │ ├── animated-gradient-view-text-banner.png │ ├── animated-gradient-view-thumbnail.png │ ├── axial.png │ ├── conic.png │ ├── example.gif │ └── radial.png └── install_swiftlint.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/.travis.yml -------------------------------------------------------------------------------- /AnimatedGradientView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView.podspec -------------------------------------------------------------------------------- /AnimatedGradientView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/AnimatedGradientDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView/Classes/AnimatedGradientDirection.swift -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/AnimatedGradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView/Classes/AnimatedGradientView.swift -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/AnimatedGradientViewAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView/Classes/AnimatedGradientViewAnimation.swift -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/AnimatedGradientViewColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView/Classes/AnimatedGradientViewColor.swift -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/Extensions/Collection+UniqueMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView/Classes/Extensions/Collection+UniqueMap.swift -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/Extensions/RegularExpressionMatchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView/Classes/Extensions/RegularExpressionMatchable.swift -------------------------------------------------------------------------------- /AnimatedGradientView/Classes/Extensions/String+RegularExpressionMatchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/AnimatedGradientView/Classes/Extensions/String+RegularExpressionMatchable.swift -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/AnimatedGradientView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AnimatedGradientView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AnimatedGradientView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AnimatedGradientView.xcodeproj/xcshareddata/xcschemes/AnimatedGradientView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView.xcodeproj/xcshareddata/xcschemes/AnimatedGradientView-Example.xcscheme -------------------------------------------------------------------------------- /Example/AnimatedGradientView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AnimatedGradientView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AnimatedGradientView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/AnimatedGradientView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/AnimatedGradientView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/AnimatedGradientView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AnimatedGradientView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView/Info.plist -------------------------------------------------------------------------------- /Example/AnimatedGradientView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/AnimatedGradientView/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/AnimatedGradientView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Local Podspecs/AnimatedGradientView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/AnimatedGradientView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/AnimatedGradientView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/AnimatedGradientView/AnimatedGradientView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedGradientView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/AnimatedGradientView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Example/Pods-AnimatedGradientView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Pods/Target Support Files/Pods-AnimatedGradientView_Tests/Pods-AnimatedGradientView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /docs/images/animated-gradient-view-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/animated-gradient-view-banner.png -------------------------------------------------------------------------------- /docs/images/animated-gradient-view-large-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/animated-gradient-view-large-logo.png -------------------------------------------------------------------------------- /docs/images/animated-gradient-view-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/animated-gradient-view-logo.png -------------------------------------------------------------------------------- /docs/images/animated-gradient-view-text-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/animated-gradient-view-text-banner.png -------------------------------------------------------------------------------- /docs/images/animated-gradient-view-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/animated-gradient-view-thumbnail.png -------------------------------------------------------------------------------- /docs/images/axial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/axial.png -------------------------------------------------------------------------------- /docs/images/conic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/conic.png -------------------------------------------------------------------------------- /docs/images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/example.gif -------------------------------------------------------------------------------- /docs/images/radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/docs/images/radial.png -------------------------------------------------------------------------------- /install_swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwbutler/AnimatedGradientView/HEAD/install_swiftlint.sh --------------------------------------------------------------------------------