├── LICENSE.md ├── README.md ├── SFDraggableDialogView Example ├── .gitignore ├── SFDraggableDialogView Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SFDraggableDialogView Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── exampleBg.imageset │ │ ├── Contents.json │ │ └── exampleBg@2x.png │ └── face.imageset │ │ ├── Contents.json │ │ └── face@2x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SFDraggableDialogView.podspec ├── SFDraggableDialogView ├── Resources │ ├── icArrow.png │ ├── icArrow@2x.png │ ├── icArrow@3x.png │ ├── icArrowTop.png │ ├── icArrowTop@2x.png │ ├── icArrowTop@3x.png │ └── icCross@2x.png ├── SFDraggableDialogView.h ├── SFDraggableDialogView.m ├── SFDraggableDialogView.xib ├── UIImage+ImageEffects.h └── UIImage+ImageEffects.m └── Screens ├── example.gif └── preview.png /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/README.md -------------------------------------------------------------------------------- /SFDraggableDialogView Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/.gitignore -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/AppDelegate.h -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/AppDelegate.m -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/exampleBg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/exampleBg.imageset/Contents.json -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/exampleBg.imageset/exampleBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/exampleBg.imageset/exampleBg@2x.png -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/face.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/face.imageset/Contents.json -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/face.imageset/face@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Assets.xcassets/face.imageset/face@2x.png -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/Info.plist -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/ViewController.h -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/ViewController.m -------------------------------------------------------------------------------- /SFDraggableDialogView Example/SFDraggableDialogView Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView Example/SFDraggableDialogView Example/main.m -------------------------------------------------------------------------------- /SFDraggableDialogView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView.podspec -------------------------------------------------------------------------------- /SFDraggableDialogView/Resources/icArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/Resources/icArrow.png -------------------------------------------------------------------------------- /SFDraggableDialogView/Resources/icArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/Resources/icArrow@2x.png -------------------------------------------------------------------------------- /SFDraggableDialogView/Resources/icArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/Resources/icArrow@3x.png -------------------------------------------------------------------------------- /SFDraggableDialogView/Resources/icArrowTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/Resources/icArrowTop.png -------------------------------------------------------------------------------- /SFDraggableDialogView/Resources/icArrowTop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/Resources/icArrowTop@2x.png -------------------------------------------------------------------------------- /SFDraggableDialogView/Resources/icArrowTop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/Resources/icArrowTop@3x.png -------------------------------------------------------------------------------- /SFDraggableDialogView/Resources/icCross@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/Resources/icCross@2x.png -------------------------------------------------------------------------------- /SFDraggableDialogView/SFDraggableDialogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/SFDraggableDialogView.h -------------------------------------------------------------------------------- /SFDraggableDialogView/SFDraggableDialogView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/SFDraggableDialogView.m -------------------------------------------------------------------------------- /SFDraggableDialogView/SFDraggableDialogView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/SFDraggableDialogView.xib -------------------------------------------------------------------------------- /SFDraggableDialogView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /SFDraggableDialogView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/SFDraggableDialogView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /Screens/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/Screens/example.gif -------------------------------------------------------------------------------- /Screens/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubatruhlar/SFDraggableDialogView/HEAD/Screens/preview.png --------------------------------------------------------------------------------