All Projects → NathanWalker → MaterialCard

NathanWalker / MaterialCard

Licence: MIT license
iOS Material Design Card View.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

MaterialCard

Version License Platform

An iOS CocoaPod that provides a MaterialCard class for creating Card Views based on the Material Design spec.

Screenshot
Sample1

Installation

MaterialCard is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "MaterialCard"

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

let card = MaterialCard(frame: CGRect(x: 10, y: UIApplication.shared.statusBarFrame.size.height + 10, width: UIApplication.shared.statusBarFrame.size.width - 20, height: 100))

let label = UILabel(frame: CGRect(x: 0, y: 37, width: card.frame.size.width, height: 21))
label.textAlignment = NSTextAlignment.center
label.text = "MaterialCard Demo"

card.backgroundColor = UIColor.white
card.shadowOpacity = 0.2
card.shadowOffsetHeight = 0
card.cornerRadius = 0
card.addSubview(label)

self.view.addSubview(card)

Authors

License

MaterialCard is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].