├── .gitignore ├── .travis.yml ├── Example ├── LoadingButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LoadingButton-Example.xcscheme ├── LoadingButton.xcworkspace │ └── contents.xcworkspacedata ├── LoadingButton │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── LoadingButton.podspec ├── LoadingButton ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── LoadingButton.swift ├── README.md └── preview └── loading-button.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LoadingButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LoadingButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LoadingButton.xcodeproj/xcshareddata/xcschemes/LoadingButton-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton.xcodeproj/xcshareddata/xcschemes/LoadingButton-Example.xcscheme -------------------------------------------------------------------------------- /Example/LoadingButton.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LoadingButton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton/AppDelegate.swift -------------------------------------------------------------------------------- /Example/LoadingButton/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/LoadingButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/LoadingButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LoadingButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton/Info.plist -------------------------------------------------------------------------------- /Example/LoadingButton/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/LoadingButton/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/LICENSE -------------------------------------------------------------------------------- /LoadingButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/LoadingButton.podspec -------------------------------------------------------------------------------- /LoadingButton/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LoadingButton/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LoadingButton/Classes/LoadingButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/LoadingButton/Classes/LoadingButton.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/README.md -------------------------------------------------------------------------------- /preview/loading-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeptiyanAndika/LoadingButton/HEAD/preview/loading-button.gif --------------------------------------------------------------------------------