├── .gitignore ├── .swiftlint.yml ├── CONTRIBUTING.md ├── Cartfile ├── Cartfile.resolved ├── Images ├── Icon.png ├── demo.png └── demo2.png ├── LICENSE.md ├── Lightbox.podspec ├── Lightbox.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Lightbox-iOS.xcscheme ├── Lightbox └── Info.plist ├── Package.swift ├── README.md ├── Resources └── Lightbox.bundle │ └── lightbox_play@2x.png ├── Source ├── AssetManager.swift ├── Library │ ├── Color+Extensions.swift │ ├── LayoutConfigurable.swift │ ├── LightboxTransition.swift │ └── UIView+Gradient.swift ├── LightboxConfig.swift ├── LightboxController.swift ├── LightboxImage.swift ├── LightboxImageStub.swift └── Views │ ├── FooterView.swift │ ├── HeaderView.swift │ ├── InfoLabel.swift │ ├── LoadingIndicator.swift │ └── PageView.swift ├── circle.yml └── iOSDemo ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── photo1.imageset │ ├── Contents.json │ └── photo1.png ├── photo2.imageset │ ├── Contents.json │ └── photo2.png └── photo3.imageset │ ├── Contents.json │ └── photo3.png ├── Base.lproj └── LaunchScreen.storyboard ├── Info.plist └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Images/Icon.png -------------------------------------------------------------------------------- /Images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Images/demo.png -------------------------------------------------------------------------------- /Images/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Images/demo2.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lightbox.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Lightbox.podspec -------------------------------------------------------------------------------- /Lightbox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Lightbox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lightbox.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Lightbox.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Lightbox.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Lightbox.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Lightbox.xcodeproj/xcshareddata/xcschemes/Lightbox-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Lightbox.xcodeproj/xcshareddata/xcschemes/Lightbox-iOS.xcscheme -------------------------------------------------------------------------------- /Lightbox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Lightbox/Info.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Lightbox.bundle/lightbox_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Resources/Lightbox.bundle/lightbox_play@2x.png -------------------------------------------------------------------------------- /Source/AssetManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/AssetManager.swift -------------------------------------------------------------------------------- /Source/Library/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Library/Color+Extensions.swift -------------------------------------------------------------------------------- /Source/Library/LayoutConfigurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Library/LayoutConfigurable.swift -------------------------------------------------------------------------------- /Source/Library/LightboxTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Library/LightboxTransition.swift -------------------------------------------------------------------------------- /Source/Library/UIView+Gradient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Library/UIView+Gradient.swift -------------------------------------------------------------------------------- /Source/LightboxConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/LightboxConfig.swift -------------------------------------------------------------------------------- /Source/LightboxController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/LightboxController.swift -------------------------------------------------------------------------------- /Source/LightboxImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/LightboxImage.swift -------------------------------------------------------------------------------- /Source/LightboxImageStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/LightboxImageStub.swift -------------------------------------------------------------------------------- /Source/Views/FooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Views/FooterView.swift -------------------------------------------------------------------------------- /Source/Views/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Views/HeaderView.swift -------------------------------------------------------------------------------- /Source/Views/InfoLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Views/InfoLabel.swift -------------------------------------------------------------------------------- /Source/Views/LoadingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Views/LoadingIndicator.swift -------------------------------------------------------------------------------- /Source/Views/PageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/Source/Views/PageView.swift -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/circle.yml -------------------------------------------------------------------------------- /iOSDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/AppDelegate.swift -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/photo1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/photo1.imageset/Contents.json -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/photo1.imageset/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/photo1.imageset/photo1.png -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/photo2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/photo2.imageset/Contents.json -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/photo2.imageset/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/photo2.imageset/photo2.png -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/photo3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/photo3.imageset/Contents.json -------------------------------------------------------------------------------- /iOSDemo/Assets.xcassets/photo3.imageset/photo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Assets.xcassets/photo3.imageset/photo3.png -------------------------------------------------------------------------------- /iOSDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOSDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/Info.plist -------------------------------------------------------------------------------- /iOSDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperoslo/Lightbox/HEAD/iOSDemo/ViewController.swift --------------------------------------------------------------------------------