DynamicButton is a powerful flat design button written in Swift to display hamburger button like with animated transitions between style updates. It also allows you to create your own custom symbol / style buttons!
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
DynamicButton is a powerful flat design button written in Swift to display hamburger button like with animated transitions between style updates. It also allows you to create your own custom symbol / style buttons!
Requirements • Usage • Installation • Contribution • Contact • License
Requirements
Usage
Basics
Here is how to create a button and setting its style:
Customization
Button appearance and behavior can be customized using different properties:
Supported Symbol Styles
Here is the symbol list (
DynamicButton.Style
) already implemented by the library:.arrowDown
: downwards arrow↓
.arrowLeft
: leftwards arrow←
.arrowRight
: rightwards arrow→
.arrowUp
: upwards arrow↑
.caretDown
: down caret⌄
.caretLeft
: left caret‹
.caretRight
: left caret›
.caretUp
: up caret:⌃
.checkMark
: check mark✓
.circleClose
: close symbol surrounded by a circle.circlePlus
: plus symbol surrounded by a circle.close
: close symbolX
.dot
: dot symbol.
.download
: downwards triangle-headed arrow to bar⤓
.fastForward
: fast forward≫
.hamburger
: hamburger button≡
.horizontalLine
: horizontal line―
.horizontalMoreOptions
: horizontal more options…
.none
: no style.pause
: pause symbol‖
.play
: play symbol►
.plus
: plus symbol+
.stop
: stop symbol◼
.reload
: reload symbol↻
.rewind
: rewind≪
.verticalLine
: vertical line|
.verticalMoreOptions
: vertical more options⋮
.location
: location symbolCustom symbols
To create your own symbols you have to create an object (or struct) that conforms to the
DynamicButtonBuildableStyle
protocol:Note that a symbol can not have more than 4 paths.
And many more…
To go further, take a look at the example project.
Installation
CocoaPods
Install CocoaPods if not already available:
Go to the directory of your Xcode project, and Create and Edit your Podfile and add DynamicButton:
Install into your project:
Open your project in Xcode from the .xcworkspace file (not the usual project file):
You can now
import DynamicButton
framework into your files.Carthage
Carthage is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with Homebrew using the following command:
To integrate
DynamicButton
into your Xcode project using Carthage, specify it in yourCartfile
file:Swift Package Manager
You can use The Swift Package Manager to install
DynamicButton
by adding the proper description to yourPackage.swift
file:Note that the Swift Package Manager is still in early design and development, for more information checkout its GitHub Page.
Manually
Download the project and copy the
DynamicButton
folder into your project to use it in.Contribution
Contributions are welcomed and encouraged ♡.
Contact
Yannick Loriot
License (MIT)
Copyright (c) 2015-present - Yannick Loriot
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.