CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | SwiftSwift | 
| License | MIT | 
| ReleasedLast Release | Dec 2016 | 
| SwiftSwift Version | 3 | 
| SPMSupports SPM | ✗ | 
Maintained by Kukaapps SDK.
BubbleButton is Swift 3 button wihch does producuse bubbles.
Just download or clone the repo and move BubbleButton.swift file to your project.
You can customize these properties in Interface Builder or by code:
You can start animating button after it’s tapped. After your propgress is completed you can call “endAnimationWith” to reset button state.
@IBAction func buttonAction(_ sender: AnyObject)
    {
        bubbleButton.startBubbleAnimationWith(direction: .TopRight)
        print("startingAnimation")
        DispatchQueue.main.asyncAfter(deadline: .now() + 2)
        {
            print("endingAnimation")
            self.bubbleButton.endAnimationWith {
                print("animationIsEnded")
            }
        }
    }MIT
Free Software, Hell Yeah!