├── .DS_Store ├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTIONS.md ├── HHFloatingView.podspec ├── HHFloatingView.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── HHFloatingView ├── .DS_Store ├── Assets.xcassets │ ├── .DS_Store │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── icon-bird.imageset │ │ ├── Contents.json │ │ └── bird.png │ ├── icon-gift.imageset │ │ ├── Contents.json │ │ └── gift.png │ ├── icon-megaphone.imageset │ │ ├── Contents.json │ │ └── megaphone.png │ ├── icon-rocket.imageset │ │ ├── Contents.json │ │ └── rocket.png │ ├── icon-ufo.imageset │ │ ├── Contents.json │ │ └── ufo.png │ └── icon-umbrella.imageset │ │ ├── Contents.json │ │ └── umbrella.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Example │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── BaseViewController.swift │ └── ViewController.swift ├── Info.plist └── Source │ ├── HHFloatingView.swift │ ├── HHFloatingViewButton.swift │ └── HHFloatingViewConfiguration.swift ├── LICENSE ├── README.md └── Screenshots ├── .DS_Store ├── Screenshot-1.png └── Screenshot-2.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/CONTRIBUTIONS.md -------------------------------------------------------------------------------- /HHFloatingView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView.podspec -------------------------------------------------------------------------------- /HHFloatingView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HHFloatingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HHFloatingView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/.DS_Store -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-bird.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-bird.imageset/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-bird.imageset/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-bird.imageset/bird.png -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-gift.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-gift.imageset/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-gift.imageset/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-gift.imageset/gift.png -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-megaphone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-megaphone.imageset/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-megaphone.imageset/megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-megaphone.imageset/megaphone.png -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-rocket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-rocket.imageset/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-rocket.imageset/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-rocket.imageset/rocket.png -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-ufo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-ufo.imageset/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-ufo.imageset/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-ufo.imageset/ufo.png -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-umbrella.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-umbrella.imageset/Contents.json -------------------------------------------------------------------------------- /HHFloatingView/Assets.xcassets/icon-umbrella.imageset/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Assets.xcassets/icon-umbrella.imageset/umbrella.png -------------------------------------------------------------------------------- /HHFloatingView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HHFloatingView/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Example/AppDelegate.swift -------------------------------------------------------------------------------- /HHFloatingView/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HHFloatingView/Example/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Example/BaseViewController.swift -------------------------------------------------------------------------------- /HHFloatingView/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Example/ViewController.swift -------------------------------------------------------------------------------- /HHFloatingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Info.plist -------------------------------------------------------------------------------- /HHFloatingView/Source/HHFloatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Source/HHFloatingView.swift -------------------------------------------------------------------------------- /HHFloatingView/Source/HHFloatingViewButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Source/HHFloatingViewButton.swift -------------------------------------------------------------------------------- /HHFloatingView/Source/HHFloatingViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/HHFloatingView/Source/HHFloatingViewConfiguration.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/Screenshots/.DS_Store -------------------------------------------------------------------------------- /Screenshots/Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/Screenshots/Screenshot-1.png -------------------------------------------------------------------------------- /Screenshots/Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemangshah/HHFloatingView/HEAD/Screenshots/Screenshot-2.png --------------------------------------------------------------------------------