├── .github └── FUNDING.yml ├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── Floaty.podspec ├── Floaty.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Floaty.xcscheme ├── Images ├── custom_item.png ├── dependent_on_uiviewcontroller.gif ├── dependent_on_uiwindow.gif ├── fade_ani.gif ├── handler.gif ├── icon.png ├── none_ani.gif ├── preview.gif ├── rtl_disabled.png ├── rtl_enabled.png ├── slideleft_ani.gif ├── slideup_ani.gif ├── storyboard_support1.png └── storyboard_support2.png ├── LICENSE ├── Package.swift ├── README.md ├── Sample ├── KCFloatingActionButton-Sample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── KCFloatingActionButton-Sample.xcscheme └── KCFloatingActionButton │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── custom-add.imageset │ │ ├── Contents.json │ │ └── ic_white-add.pdf │ ├── Base.lproj │ └── Main.storyboard │ ├── CircularAnimationViewController.swift │ ├── Icons.xcassets │ ├── Contents.json │ ├── icMap.imageset │ │ ├── Contents.json │ │ ├── icMap.png │ │ ├── icMap@2x.png │ │ └── icMap@3x.png │ └── icShare.imageset │ │ ├── Contents.json │ │ ├── icShare.png │ │ ├── icShare@2x.png │ │ └── icShare@3x.png │ ├── Info.plist │ ├── LaunchScreen.xib │ ├── TableViewController.swift │ └── ViewController.swift ├── Sources ├── Floaty.h ├── Floaty.swift ├── FloatyDelegate.swift ├── FloatyItem.swift ├── FloatyManager.swift ├── FloatyViewController.swift ├── FloatyWindow.swift └── UIView+Draggable.swift └── Supports └── Info.plist /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [kciter] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Floaty.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Floaty.podspec -------------------------------------------------------------------------------- /Floaty.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Floaty.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Floaty.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Floaty.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Floaty.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Floaty.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Floaty.xcodeproj/xcshareddata/xcschemes/Floaty.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Floaty.xcodeproj/xcshareddata/xcschemes/Floaty.xcscheme -------------------------------------------------------------------------------- /Images/custom_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/custom_item.png -------------------------------------------------------------------------------- /Images/dependent_on_uiviewcontroller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/dependent_on_uiviewcontroller.gif -------------------------------------------------------------------------------- /Images/dependent_on_uiwindow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/dependent_on_uiwindow.gif -------------------------------------------------------------------------------- /Images/fade_ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/fade_ani.gif -------------------------------------------------------------------------------- /Images/handler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/handler.gif -------------------------------------------------------------------------------- /Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/icon.png -------------------------------------------------------------------------------- /Images/none_ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/none_ani.gif -------------------------------------------------------------------------------- /Images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/preview.gif -------------------------------------------------------------------------------- /Images/rtl_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/rtl_disabled.png -------------------------------------------------------------------------------- /Images/rtl_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/rtl_enabled.png -------------------------------------------------------------------------------- /Images/slideleft_ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/slideleft_ani.gif -------------------------------------------------------------------------------- /Images/slideup_ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/slideup_ani.gif -------------------------------------------------------------------------------- /Images/storyboard_support1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/storyboard_support1.png -------------------------------------------------------------------------------- /Images/storyboard_support2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Images/storyboard_support2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/README.md -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton-Sample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton-Sample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton-Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton-Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton-Sample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton-Sample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton-Sample.xcodeproj/xcshareddata/xcschemes/KCFloatingActionButton-Sample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton-Sample.xcodeproj/xcshareddata/xcschemes/KCFloatingActionButton-Sample.xcscheme -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/AppDelegate.swift -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Assets.xcassets/custom-add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Assets.xcassets/custom-add.imageset/Contents.json -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Assets.xcassets/custom-add.imageset/ic_white-add.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Assets.xcassets/custom-add.imageset/ic_white-add.pdf -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/CircularAnimationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/CircularAnimationViewController.swift -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/Contents.json -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/icMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/icMap.png -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/icMap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/icMap@2x.png -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/icMap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icMap.imageset/icMap@3x.png -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/Contents.json -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/icShare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/icShare.png -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/icShare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/icShare@2x.png -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/icShare@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Icons.xcassets/icShare.imageset/icShare@3x.png -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/Info.plist -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/LaunchScreen.xib -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/TableViewController.swift -------------------------------------------------------------------------------- /Sample/KCFloatingActionButton/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sample/KCFloatingActionButton/ViewController.swift -------------------------------------------------------------------------------- /Sources/Floaty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/Floaty.h -------------------------------------------------------------------------------- /Sources/Floaty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/Floaty.swift -------------------------------------------------------------------------------- /Sources/FloatyDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/FloatyDelegate.swift -------------------------------------------------------------------------------- /Sources/FloatyItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/FloatyItem.swift -------------------------------------------------------------------------------- /Sources/FloatyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/FloatyManager.swift -------------------------------------------------------------------------------- /Sources/FloatyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/FloatyViewController.swift -------------------------------------------------------------------------------- /Sources/FloatyWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/FloatyWindow.swift -------------------------------------------------------------------------------- /Sources/UIView+Draggable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Sources/UIView+Draggable.swift -------------------------------------------------------------------------------- /Supports/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kciter/Floaty/HEAD/Supports/Info.plist --------------------------------------------------------------------------------