├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .swiftlint.yml ├── ConfettiView-NSHipster.podspec ├── Example ├── ConfettiView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ConfettiView-Example.xcscheme ├── ConfettiView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ConfettiView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Star.imageset │ │ │ ├── Contents.json │ │ │ └── star.pdf │ ├── Info.plist │ └── ViewController.swift ├── Package.swift ├── Podfile ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Package.swift ├── README.md └── Sources └── ConfettiView └── ConfettiView.swift /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /ConfettiView-NSHipster.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/ConfettiView-NSHipster.podspec -------------------------------------------------------------------------------- /Example/ConfettiView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ConfettiView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ConfettiView.xcodeproj/xcshareddata/xcschemes/ConfettiView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView.xcodeproj/xcshareddata/xcschemes/ConfettiView-Example.xcscheme -------------------------------------------------------------------------------- /Example/ConfettiView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ConfettiView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ConfettiView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ConfettiView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ConfettiView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ConfettiView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ConfettiView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ConfettiView/Images.xcassets/Star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/Images.xcassets/Star.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ConfettiView/Images.xcassets/Star.imageset/star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/Images.xcassets/Star.imageset/star.pdf -------------------------------------------------------------------------------- /Example/ConfettiView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/Info.plist -------------------------------------------------------------------------------- /Example/ConfettiView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/ConfettiView/ViewController.swift -------------------------------------------------------------------------------- /Example/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/Package.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ConfettiView/ConfettiView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSHipster/ConfettiView/HEAD/Sources/ConfettiView/ConfettiView.swift --------------------------------------------------------------------------------