The Wayback Machine - https://web.archive.org/web/20210125111340/https://github.com/chriszielinski/Fab
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Fab. 🛍️

Platform Pod Version Carthage compatible Swift Version GitHub license


A Floating Action Button for macOS. Inspired by Material Design, and written in Swift.
Based on Lourenço Marinho's ActionButton for UIKit.


Features

  • Dark Mode

  • + more.

Installation

Fab is available for installation using CocoaPods or Carthage.

CocoaPods

pod "Fab"

Carthage

github "chriszielinski/Fab"

Requirements

  • macOS 10.12+

Usage

Create FabItems

let shareItem = FabItem(label: "Share", shareImage)
shareItem.action = { item in
	print("Selected \"Share\"")
}

let emailItem = FabItem(label: "Email", emoji: "✉️") { item in
	print("Selected \"Email\"")
}

Create Fab with items.

let fab = Fab(attachedTo: aView, items: [shareItem, emailItem])

Documentation

There are a lot of properties you can dabble with. You can check out the docs here. Documentation is generated with jazzy and hosted on GitHub-Pages.

Try Me

Includes a Playground and Demo.app.

// ToDo:

  • Tests.

// CouldDo:

  • Use CALayer.
  • Internal refactoring.

Acknowledgements

Contributors

License

Fab is released under the MIT license. See LICENSE for details.