Popularity
3.1
Stable
Activity
0.0
Stable
160
8
11
Programming language: Swift
License: MIT License
Latest version: v1.0.2
EasySocialButton alternatives and similar libraries
Based on the "Button" category.
Alternatively, view EasySocialButton alternatives based on common mentions on social networks and blogs.
-
LGButton
A fully customisable subclass of the native UIControl which allows you to create beautiful buttons without writing any line of code. -
PMSuperButton
🔥 PMSuperButton is a powerful UIButton coming from the countryside, but with super powers! 😎 -
ButtonProgressBar-iOS
A small and flexible (well documented) UIButton subclass with animated loading progress, and completion animation. -
NFDownloadButton
Revamped Download Button. It's kinda a reverse engineering of Netflix's app download button. -
JOEmojiableBtn
Since Facebook introduced reactions in 2016, it became a standard in several applications as a way for users to interact with content. ReactionButton is a control that allows developers to add this functionality to their apps in an easy way. -
FlowBarButtonItem
DISCONTINUED. Bar Button Item that can be moved anywhere in the screen, like Android's stickers button. -
DesignableButton
A Custom UIButton with Centralised Styling and common styles available in Interface Builder -
AnimatablePlayButton
Animated Play and Pause Button written in Swift, using CALayer, CAKeyframeAnimation. -
JSButton
A fully customisable swift subclass on UIButton which allows you to create beautiful buttons without writing any line of code.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of EasySocialButton or a related project?
README
EasySocialButton
An easy way to create beautiful social authentication buttons
Screenshots
Installation
Cocoa Pods
pod 'EasySocialButton'
Manual
Drag and drop AZSocialButton.swift
to your project.
Usage
Interface Builder
Simply add a UIButton, and in the Identity Inspector change the class to AZSocialButton
.
Programmatically
let socialButton = AZSocialButton(frame: CGRect(x: 20, y: 20, width: 200, height: 40))
socialButton.animateInteraction = true
socialButton.useCornerRadius = true
socialButton.cornerRadius = 5
socialButton.highlightOnTouch = false
socialButton.image = #imageLiteral(resourceName: "ic_google")
socialButton.setTitle("Sign in with Google", for: [])
socialButton.setTitleColor(.black, for: [])
socialButton.titleLabel?.font = UIFont.systemFont(ofSize: 15)
socialButton.onClickAction = { (button) in
print("do social login stuff")
}
view.addSubview(socialButton)