├── .gitignore ├── Flow.podspec ├── Flow ├── FLWCompoundGesture.h ├── FLWCompoundGesture.m ├── FLWSwipeGesture.h ├── FLWSwipeGesture.m ├── FLWTapGesture.h ├── FLWTapGesture.m ├── FLWTouchGesture.h ├── FLWTutorialController.h ├── FLWTutorialController.m ├── Flow.h └── Private │ ├── _FLWTutorial.h │ ├── _FLWTutorial.m │ ├── _FLWTutorialOverlayView.h │ ├── _FLWTutorialOverlayView.m │ ├── _FLWTutorialTouchIndicatorView.h │ ├── _FLWTutorialTouchIndicatorView.m │ ├── _FLWTutorialWindow.h │ └── _FLWTutorialWindow.m ├── FlowSample.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── FlowSample.xccheckout ├── LICENSE.md ├── Podfile ├── Podfile.lock ├── README.md ├── Resources ├── FLWProgressCheckmark.png ├── FLWProgressCheckmark@2x.png ├── FLWProgressViewClose.png └── FLWProgressViewClose@2x.png └── Sample ├── FlowSample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── FlowSample.xccheckout ├── FlowSample ├── FLWAppDelegate.h ├── FLWAppDelegate.m ├── FLWMainViewController.h ├── FLWMainViewController.m ├── FlowSample-Info.plist ├── FlowSample-Prefix.pch ├── Hacks.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── en.lproj │ └── InfoPlist.strings └── main.m └── FlowSampleTests ├── FlowSampleTests-Info.plist ├── FlowSampleTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /Flow.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow.podspec -------------------------------------------------------------------------------- /Flow/FLWCompoundGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWCompoundGesture.h -------------------------------------------------------------------------------- /Flow/FLWCompoundGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWCompoundGesture.m -------------------------------------------------------------------------------- /Flow/FLWSwipeGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWSwipeGesture.h -------------------------------------------------------------------------------- /Flow/FLWSwipeGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWSwipeGesture.m -------------------------------------------------------------------------------- /Flow/FLWTapGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWTapGesture.h -------------------------------------------------------------------------------- /Flow/FLWTapGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWTapGesture.m -------------------------------------------------------------------------------- /Flow/FLWTouchGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWTouchGesture.h -------------------------------------------------------------------------------- /Flow/FLWTutorialController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWTutorialController.h -------------------------------------------------------------------------------- /Flow/FLWTutorialController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/FLWTutorialController.m -------------------------------------------------------------------------------- /Flow/Flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Flow.h -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorial.h -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorial.m -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorialOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorialOverlayView.h -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorialOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorialOverlayView.m -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorialTouchIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorialTouchIndicatorView.h -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorialTouchIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorialTouchIndicatorView.m -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorialWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorialWindow.h -------------------------------------------------------------------------------- /Flow/Private/_FLWTutorialWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Flow/Private/_FLWTutorialWindow.m -------------------------------------------------------------------------------- /FlowSample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/FlowSample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FlowSample.xcworkspace/xcshareddata/FlowSample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/FlowSample.xcworkspace/xcshareddata/FlowSample.xccheckout -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/README.md -------------------------------------------------------------------------------- /Resources/FLWProgressCheckmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Resources/FLWProgressCheckmark.png -------------------------------------------------------------------------------- /Resources/FLWProgressCheckmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Resources/FLWProgressCheckmark@2x.png -------------------------------------------------------------------------------- /Resources/FLWProgressViewClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Resources/FLWProgressViewClose.png -------------------------------------------------------------------------------- /Resources/FLWProgressViewClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Resources/FLWProgressViewClose@2x.png -------------------------------------------------------------------------------- /Sample/FlowSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/FlowSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample/FlowSample.xcodeproj/project.xcworkspace/xcshareddata/FlowSample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample.xcodeproj/project.xcworkspace/xcshareddata/FlowSample.xccheckout -------------------------------------------------------------------------------- /Sample/FlowSample/FLWAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/FLWAppDelegate.h -------------------------------------------------------------------------------- /Sample/FlowSample/FLWAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/FLWAppDelegate.m -------------------------------------------------------------------------------- /Sample/FlowSample/FLWMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/FLWMainViewController.h -------------------------------------------------------------------------------- /Sample/FlowSample/FLWMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/FLWMainViewController.m -------------------------------------------------------------------------------- /Sample/FlowSample/FlowSample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/FlowSample-Info.plist -------------------------------------------------------------------------------- /Sample/FlowSample/FlowSample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/FlowSample-Prefix.pch -------------------------------------------------------------------------------- /Sample/FlowSample/Hacks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/Hacks.m -------------------------------------------------------------------------------- /Sample/FlowSample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample/FlowSample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Sample/FlowSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Sample/FlowSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSample/main.m -------------------------------------------------------------------------------- /Sample/FlowSampleTests/FlowSampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSampleTests/FlowSampleTests-Info.plist -------------------------------------------------------------------------------- /Sample/FlowSampleTests/FlowSampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLetterer/Flow/HEAD/Sample/FlowSampleTests/FlowSampleTests.m -------------------------------------------------------------------------------- /Sample/FlowSampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------