├── FlareView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ ├── Dhanalakshmi.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── FlareView.xcscheme │ │ └── xcschememanagement.plist │ └── Stanly.xcuserdatad │ └── xcschemes │ ├── FlareView.xcscheme │ └── xcschememanagement.plist ├── FlareView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── flares │ ├── FlareView.h │ └── FlareView.m ├── heart.png ├── love.png ├── main.m └── star.png ├── FlareViewTests ├── FlareViewTests.m └── Info.plist ├── FlareViewUITests ├── FlareViewUITests.m └── Info.plist ├── README.md └── screenshot └── af86e6ae-acd6-11e6-8191-43786511bb31.gif /FlareView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FlareView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcschemes/FlareView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcschemes/FlareView.xcscheme -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView.xcodeproj/xcuserdata/Dhanalakshmi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Stanly.xcuserdatad/xcschemes/FlareView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView.xcodeproj/xcuserdata/Stanly.xcuserdatad/xcschemes/FlareView.xcscheme -------------------------------------------------------------------------------- /FlareView.xcodeproj/xcuserdata/Stanly.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView.xcodeproj/xcuserdata/Stanly.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FlareView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/AppDelegate.h -------------------------------------------------------------------------------- /FlareView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/AppDelegate.m -------------------------------------------------------------------------------- /FlareView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FlareView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FlareView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FlareView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/Info.plist -------------------------------------------------------------------------------- /FlareView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/ViewController.h -------------------------------------------------------------------------------- /FlareView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/ViewController.m -------------------------------------------------------------------------------- /FlareView/flares/FlareView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/flares/FlareView.h -------------------------------------------------------------------------------- /FlareView/flares/FlareView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/flares/FlareView.m -------------------------------------------------------------------------------- /FlareView/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/heart.png -------------------------------------------------------------------------------- /FlareView/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/love.png -------------------------------------------------------------------------------- /FlareView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/main.m -------------------------------------------------------------------------------- /FlareView/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareView/star.png -------------------------------------------------------------------------------- /FlareViewTests/FlareViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareViewTests/FlareViewTests.m -------------------------------------------------------------------------------- /FlareViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareViewTests/Info.plist -------------------------------------------------------------------------------- /FlareViewUITests/FlareViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareViewUITests/FlareViewUITests.m -------------------------------------------------------------------------------- /FlareViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/FlareViewUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/README.md -------------------------------------------------------------------------------- /screenshot/af86e6ae-acd6-11e6-8191-43786511bb31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanlyHardy/FlareView/HEAD/screenshot/af86e6ae-acd6-11e6-8191-43786511bb31.gif --------------------------------------------------------------------------------