• Stars
    star
    1,168
  • Rank 38,402 (Top 0.8 %)
  • Language
    Swift
  • License
    MIT License
  • Created over 8 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Yet another animated flat buttons in Swift

DynamicButton

Supported Platforms Version Carthage compatible Swift Package Manager compatible Build Status codecov.io codebeat badge

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!

DynamicButton

Requirements โ€ข Usage โ€ข Installation โ€ข Contribution โ€ข Contact โ€ข License

Requirements

  • iOS 8.0+ / tvOS 9.0+
  • Xcode 10.0+
  • Swift 5+

Usage

Basics

Here is how to create a button and setting its style:

import DynamicButton

let dynamicButton = DynamicButton(style: .hamburger)
// Equivalent to
// let dynamicButton   = DynamicButton()
// dynamicButton.style = .hamburger

// Animate the style update
dynamicButton.setStyle(.close, animated: true)

Customization

Button appearance and behavior can be customized using different properties:

let dynamicButton                 = DynamicButton()
dynamicButton.lineWidth           = 3
dynamicButton.strokeColor         = .black
dynamicButton.highlightStokeColor = .gray

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 symbol X
  • .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 symbol

Custom symbols

To create your own symbols you have to create an object (or struct) that conforms to the DynamicButtonBuildableStyle protocol:

/// Diagonal line style: \
struct MyCustomLine: DynamicButtonBuildableStyle {
  let pathVector: DynamicButtonPathVector

  init(center: CGPoint, size: CGFloat, offset: CGPoint, lineWidth: CGFloat) {
    let r = size / 2
    let c = cos(CGFloat.pi * 0.3)
    let s = sin(CGFloat.pi * 0.3)

    let p1 = CGMutablePath()
    p1.move(to: CGPoint(x: center.x + r * c, y: center.y + r * s))
    p1.addLine(to: CGPoint(x: center.x - r * c, y: center.y - r * s))

    pathVector = DynamicButtonPathVector(p1: p1, p2: p1, p3: p1, p4: p1)
  }

  /// "MyCustomLine" style.
  static var styleName: String {
    return "MyCustomLine"
  }
}

myButton.style = .custom(MyCustomLine.self)

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:

$ [sudo] gem install cocoapods
$ pod setup

Go to the directory of your Xcode project, and Create and Edit your Podfile and add DynamicButton:

$ cd /path/to/MyProject
$ touch Podfile
$ edit Podfile
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

use_frameworks!
pod 'DynamicButton', '~> 6.2.1'

Install into your project:

$ pod install

Open your project in Xcode from the .xcworkspace file (not the usual project file):

$ open MyProject.xcworkspace

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:

$ brew update
$ brew install carthage

To integrate DynamicButton into your Xcode project using Carthage, specify it in your Cartfile file:

github "yannickl/DynamicButton" >= 6.2.1

Swift Package Manager

You can use The Swift Package Manager to install DynamicButton by adding the proper description to your Package.swift file:

import PackageDescription

let package = Package(
    name: "YOUR_PROJECT_NAME",
    dependencies: [
        .package(url: "https://github.com/yannickl/DynamicButton.git", from: "6.2.1")
    ],
    // ...
)

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.

More Repositories

1

DynamicColor

Yet another extension to manipulate colors easily in Swift and SwiftUI
Swift
2,971
star
2

QRCodeReader.swift

Simple QRCode reader in Swift
Swift
1,315
star
3

YLProgressBar

UIProgressView replacement with an highly and fully customizable animated progress bar in pure Core Graphics
Objective-C
1,275
star
4

Splitflap

A simple split-flap display for your Swift applications
Swift
1,074
star
5

FlowingMenu

Interactive view transition to display menus with flowing and bouncing effects in Swift
Swift
974
star
6

AwaitKit

The ES8 Async/Await control flow for Swift
Swift
747
star
7

YLMoment

Parsing, validating, manipulating, and formatting dates easily in Objective-C (API inspired by moment.js)
Objective-C
709
star
8

QRCodeReaderViewController

Simple QRCode reader for iOS 7 and over
Objective-C
629
star
9

Reactions

Fully customizable Facebook reactions like control
Swift
584
star
10

SnappingStepper

An elegant alternative to the UIStepper written in Swift
Swift
429
star
11

Perspective

Powerful scrolling and motion parallax for iOS
Swift
266
star
12

CCControlExtension

Collection of classes to make the design of controls easier for Cocos2d-for-iPhone
Objective-C
209
star
13

Box2D-Examples

Box2D examples (Ragdoll, Buoyancy, etc.) for Cocos2D for iPhone
Objective-C
69
star
14

Petal

Beautiful activity indicator to show that a task is in progress
Swift
67
star
15

YLFlowingMenu

The Objective-C counterpart of FlowingMenu
Objective-C
28
star
16

YLTCPBroadcaster

Fast and easy-to-use network scanner to locate every host with a given open port
Objective-C
18
star
17

DynamicFont

Yet another extension to manipulate fonts easily in Swift
Swift
8
star
18

VLCRemoteKit

Remote control for VLC using the HTTP interface in Swift (Under Development)
Swift
3
star
19

Cocarde

Under development
Swift
1
star
20

RSSReaderDemonstrationApp

RSS Reader application for education purpose
Objective-C
1
star