├── .swift-version ├── LICENSE ├── PlaceholderViewExample ├── PlaceholderViewExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── bruno.rocha.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── bruno.rocha.xcuserdatad │ │ └── xcschemes │ │ ├── PlaceholderViewExample.xcscheme │ │ └── xcschememanagement.plist ├── PlaceholderViewExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── bruno.rocha.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── PlaceholderViewExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── placeholderEvents.imageset │ │ │ ├── Contents.json │ │ │ ├── placeholderEvents.png │ │ │ ├── placeholderEvents@2x.png │ │ │ └── placeholderEvents@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── SlidingGradientView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── bruno.rocha.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-PlaceholderViewExample.xcscheme │ │ ├── SlidingGradientView.xcscheme │ │ └── xcschememanagement.plist │ └── Target Support Files │ ├── Pods-PlaceholderViewExample │ ├── Info.plist │ ├── Pods-PlaceholderViewExample-acknowledgements.markdown │ ├── Pods-PlaceholderViewExample-acknowledgements.plist │ ├── Pods-PlaceholderViewExample-dummy.m │ ├── Pods-PlaceholderViewExample-frameworks.sh │ ├── Pods-PlaceholderViewExample-resources.sh │ ├── Pods-PlaceholderViewExample-umbrella.h │ ├── Pods-PlaceholderViewExample.debug.xcconfig │ ├── Pods-PlaceholderViewExample.modulemap │ └── Pods-PlaceholderViewExample.release.xcconfig │ └── SlidingGradientView │ ├── Info.plist │ ├── SlidingGradientView-dummy.m │ ├── SlidingGradientView-prefix.pch │ ├── SlidingGradientView-umbrella.h │ ├── SlidingGradientView.modulemap │ └── SlidingGradientView.xcconfig ├── README.md ├── SlidingGradientView.podspec ├── SlidingGradientView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── bruno.rocha.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── bruno.rocha.xcuserdatad │ └── xcschemes │ ├── SlidingGradientView.xcscheme │ └── xcschememanagement.plist └── SlidingGradientView ├── Info.plist └── Sources ├── GradientColor.swift ├── GradientProperties.swift ├── SlidingGradientView.swift └── SlidingProperties.swift /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/LICENSE -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcodeproj/project.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcodeproj/project.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/PlaceholderViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/PlaceholderViewExample.xcscheme -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/Contents.json -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/placeholderEvents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/placeholderEvents.png -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/placeholderEvents@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/placeholderEvents@2x.png -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/placeholderEvents@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Assets.xcassets/placeholderEvents.imageset/placeholderEvents@3x.png -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/Info.plist -------------------------------------------------------------------------------- /PlaceholderViewExample/PlaceholderViewExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/PlaceholderViewExample/ViewController.swift -------------------------------------------------------------------------------- /PlaceholderViewExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Podfile -------------------------------------------------------------------------------- /PlaceholderViewExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Podfile.lock -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Local Podspecs/SlidingGradientView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Local Podspecs/SlidingGradientView.podspec.json -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Pods.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/Pods-PlaceholderViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Pods.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/Pods-PlaceholderViewExample.xcscheme -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Pods.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/SlidingGradientView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Pods.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/SlidingGradientView.xcscheme -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Pods.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Pods.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Info.plist -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-acknowledgements.markdown -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-acknowledgements.plist -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-dummy.m -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-frameworks.sh -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-resources.sh -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample-umbrella.h -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample.debug.xcconfig -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample.modulemap -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/Pods-PlaceholderViewExample/Pods-PlaceholderViewExample.release.xcconfig -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/Info.plist -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView-dummy.m -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView-prefix.pch -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView-umbrella.h -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView.modulemap -------------------------------------------------------------------------------- /PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/PlaceholderViewExample/Pods/Target Support Files/SlidingGradientView/SlidingGradientView.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/README.md -------------------------------------------------------------------------------- /SlidingGradientView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView.podspec -------------------------------------------------------------------------------- /SlidingGradientView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SlidingGradientView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SlidingGradientView.xcodeproj/project.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView.xcodeproj/project.xcworkspace/xcuserdata/bruno.rocha.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SlidingGradientView.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/SlidingGradientView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/SlidingGradientView.xcscheme -------------------------------------------------------------------------------- /SlidingGradientView.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView.xcodeproj/xcuserdata/bruno.rocha.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SlidingGradientView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView/Info.plist -------------------------------------------------------------------------------- /SlidingGradientView/Sources/GradientColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView/Sources/GradientColor.swift -------------------------------------------------------------------------------- /SlidingGradientView/Sources/GradientProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView/Sources/GradientProperties.swift -------------------------------------------------------------------------------- /SlidingGradientView/Sources/SlidingGradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView/Sources/SlidingGradientView.swift -------------------------------------------------------------------------------- /SlidingGradientView/Sources/SlidingProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbruno/SlidingGradientView/HEAD/SlidingGradientView/Sources/SlidingProperties.swift --------------------------------------------------------------------------------