├── .swift-version ├── Contents ├── down.gif ├── example1.gif ├── example2.gif ├── example3.gif ├── example4.gif ├── example5.gif ├── example6.gif ├── left.gif ├── main.gif ├── right.gif └── up.gif ├── ExpandableButton.podspec ├── ExpandableButton ├── ActionButton.swift ├── ArrowButton.swift ├── ExpandableButtonItem.swift └── ExpandableButtonView.swift ├── ExpandableButtonExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── ExpandableButtonExample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── delete.imageset │ │ ├── Contents.json │ │ └── Image.png │ ├── edit.imageset │ │ ├── Contents.json │ │ └── Image.png │ ├── like.imageset │ │ ├── Contents.json │ │ └── Image.png │ ├── photo.imageset │ │ ├── 1496710261194222281.jpg │ │ └── Contents.json │ └── share.imageset │ │ ├── Contents.json │ │ └── Image.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── ExpandableButtonExampleTests ├── ExpandableButtonExampleTests.swift └── Info.plist ├── ExpandableButtonExampleUITests ├── ExpandableButtonExampleUITests.swift └── Info.plist ├── LICENSE └── README.md /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /Contents/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/down.gif -------------------------------------------------------------------------------- /Contents/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/example1.gif -------------------------------------------------------------------------------- /Contents/example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/example2.gif -------------------------------------------------------------------------------- /Contents/example3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/example3.gif -------------------------------------------------------------------------------- /Contents/example4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/example4.gif -------------------------------------------------------------------------------- /Contents/example5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/example5.gif -------------------------------------------------------------------------------- /Contents/example6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/example6.gif -------------------------------------------------------------------------------- /Contents/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/left.gif -------------------------------------------------------------------------------- /Contents/main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/main.gif -------------------------------------------------------------------------------- /Contents/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/right.gif -------------------------------------------------------------------------------- /Contents/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/Contents/up.gif -------------------------------------------------------------------------------- /ExpandableButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButton.podspec -------------------------------------------------------------------------------- /ExpandableButton/ActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButton/ActionButton.swift -------------------------------------------------------------------------------- /ExpandableButton/ArrowButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButton/ArrowButton.swift -------------------------------------------------------------------------------- /ExpandableButton/ExpandableButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButton/ExpandableButtonItem.swift -------------------------------------------------------------------------------- /ExpandableButton/ExpandableButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButton/ExpandableButtonView.swift -------------------------------------------------------------------------------- /ExpandableButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ExpandableButtonExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ExpandableButtonExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/AppDelegate.swift -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/delete.imageset/Contents.json -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/delete.imageset/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/delete.imageset/Image.png -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/edit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/edit.imageset/Contents.json -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/edit.imageset/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/edit.imageset/Image.png -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/like.imageset/Contents.json -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/like.imageset/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/like.imageset/Image.png -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/photo.imageset/1496710261194222281.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/photo.imageset/1496710261194222281.jpg -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/photo.imageset/Contents.json -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/share.imageset/Contents.json -------------------------------------------------------------------------------- /ExpandableButtonExample/Assets.xcassets/share.imageset/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Assets.xcassets/share.imageset/Image.png -------------------------------------------------------------------------------- /ExpandableButtonExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ExpandableButtonExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ExpandableButtonExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/Info.plist -------------------------------------------------------------------------------- /ExpandableButtonExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExample/ViewController.swift -------------------------------------------------------------------------------- /ExpandableButtonExampleTests/ExpandableButtonExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExampleTests/ExpandableButtonExampleTests.swift -------------------------------------------------------------------------------- /ExpandableButtonExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExampleTests/Info.plist -------------------------------------------------------------------------------- /ExpandableButtonExampleUITests/ExpandableButtonExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExampleUITests/ExpandableButtonExampleUITests.swift -------------------------------------------------------------------------------- /ExpandableButtonExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/ExpandableButtonExampleUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DimaMishchenko/ExpandableButton/HEAD/README.md --------------------------------------------------------------------------------