├── AJParticlesLoadingView ├── AJParticlesLoadingView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── indianic.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── indianic.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── AJParticlesLoadingView.xcscheme │ │ └── xcschememanagement.plist └── AJParticlesLoadingView │ ├── AJParticlesLoadingView │ ├── AJParticlesLoadingView.swift │ ├── ParticleFileLoader.swift │ ├── ParticlesSprites.swift │ ├── ParticlesType.swift │ └── Sprites │ │ ├── Bokeh.sks │ │ ├── Fire.sks │ │ ├── Fireflies.sks │ │ ├── Magic.sks │ │ ├── Rain.sks │ │ ├── Smoke.sks │ │ ├── Snow.sks │ │ ├── Spark.sks │ │ ├── balloons.png │ │ ├── bokeh.png │ │ ├── heart.png │ │ ├── party.png │ │ ├── spark.png │ │ ├── star.png │ │ └── sunflower.png │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE └── README.md /AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/project.xcworkspace/xcuserdata/indianic.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/project.xcworkspace/xcuserdata/indianic.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/xcuserdata/indianic.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/xcuserdata/indianic.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/xcuserdata/indianic.xcuserdatad/xcschemes/AJParticlesLoadingView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/xcuserdata/indianic.xcuserdatad/xcschemes/AJParticlesLoadingView.xcscheme -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/xcuserdata/indianic.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView.xcodeproj/xcuserdata/indianic.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView.swift -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/ParticleFileLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/ParticleFileLoader.swift -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/ParticlesSprites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/ParticlesSprites.swift -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/ParticlesType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/ParticlesType.swift -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Bokeh.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Bokeh.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Fire.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Fire.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Fireflies.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Fireflies.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Magic.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Magic.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Rain.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Rain.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Smoke.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Smoke.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Snow.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Snow.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Spark.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/Spark.sks -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/balloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/balloons.png -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/bokeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/bokeh.png -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/heart.png -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/party.png -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/spark.png -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/star.png -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/sunflower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AJParticlesLoadingView/Sprites/sunflower.png -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/AppDelegate.swift -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/Info.plist -------------------------------------------------------------------------------- /AJParticlesLoadingView/AJParticlesLoadingView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/AJParticlesLoadingView/AJParticlesLoadingView/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitjain03/AJParticlesLoadingView/HEAD/README.md --------------------------------------------------------------------------------