Popularity
2.7
Stable
Activity
0.0
Stable
113
8
11

Code Quality Rank: L3
Programming language: Swift
License: MIT License
Tags: UI     Button    

Hamburger-Menu-Button alternatives and similar libraries

Based on the "Button" category.
Alternatively, view Hamburger-Menu-Button alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Hamburger-Menu-Button or a related project?

Add another 'Button' Library

README

Hamburger Menu Button

A hamburger menu button with full customization. Inspired by VinhLe's idea on the Dribble

[Preview](./Preview.gif)

How to use it

You can config the looks of the button through Xcode Inspector

[Xcode Inspector](./Inspector.gif)

Or you can make a button on your own by doing this:

  let firstButton = MenuButton(frame: CGRectMake(100, 100, 60, 60))
  firstButton.addTarget(self, action: "buttonClick:", forControlEvents: UIControlEvents.TouchUpInside)
  firstButton.lineWidth = 30
  firstButton.lineMargin = 12
  firstButton.lineCapRound = true
  firstButton.thickness = 6
  firstButton.slideLeftToRight = false
  firstButton.backgroundColor = UIColor.purpleColor()
  firstButton.cornerRadius = 10
  self.view.addSubview(firstButton)

License

MIT license. See the LICENSE file for details.


*Note that all licence references and agreements mentioned in the Hamburger-Menu-Button README section above are relevant to that project's source code only.