Commit 13acfbb1 by Daniel Dahan

README Update

parent a5c2a3df
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'MK' s.name = 'MK'
s.version = '1.25.4' s.version = '1.25.5'
s.license = { :type => "AGPL-3.0", :file => "LICENSE" } s.license = { :type => "AGPL-3.0", :file => "LICENSE" }
s.summary = 'Beautiful Material Design in Swift.' s.summary = 'Beautiful Material Design in Swift.'
s.homepage = 'http://materialkit.io' s.homepage = 'http://materialkit.io'
......
...@@ -28,7 +28,6 @@ Run carthage to build the framework and drag the built MaterialKit.framework int ...@@ -28,7 +28,6 @@ Run carthage to build the framework and drag the built MaterialKit.framework int
### Table of Contents ### Table of Contents
* [MaterialColor](#materialcolor)
* [TextField](#textfield) * [TextField](#textfield)
* [MaterialLayer](#materiallayer) * [MaterialLayer](#materiallayer)
* [MaterialView](#materialview) * [MaterialView](#materialview)
...@@ -41,6 +40,7 @@ Run carthage to build the framework and drag the built MaterialKit.framework int ...@@ -41,6 +40,7 @@ Run carthage to build the framework and drag the built MaterialKit.framework int
* [NavigationBarView](#navigationbarview) * [NavigationBarView](#navigationbarview)
* [SideNavigationViewController](#sidenavigationviewcontroller) * [SideNavigationViewController](#sidenavigationviewcontroller)
* [CaptureView](#captureview) * [CaptureView](#captureview)
* [MaterialColor](#materialcolor)
### Upcoming ### Upcoming
...@@ -52,13 +52,6 @@ Run carthage to build the framework and drag the built MaterialKit.framework int ...@@ -52,13 +52,6 @@ Run carthage to build the framework and drag the built MaterialKit.framework int
* Scrolling Techniques * Scrolling Techniques
* More Examples * More Examples
<a name="materialcolor"/>
### MaterialColor
Explore a complete range of Material Design colors using MaterialColor. Below is an example of setting a button's background color property.
![MaterialKitMaterialColorPalette](http://www.materialkit.io/MK/MaterialKitMaterialColorPalette.png)
```swift ```swift
let button: FabButton = FabButton() let button: FabButton = FabButton()
button.backgroundColor = MaterialColor.blue.darken1 button.backgroundColor = MaterialColor.blue.darken1
...@@ -73,7 +66,6 @@ A TextField is an excellent way to improve UX. Checkout the Examples directory f ...@@ -73,7 +66,6 @@ A TextField is an excellent way to improve UX. Checkout the Examples directory f
```swift ```swift
let titleField: TextField = TextField(frame: CGRectMake(57, 100, 300, 24)) let titleField: TextField = TextField(frame: CGRectMake(57, 100, 300, 24))
titleField.delegate = self
titleField.placeholder = "Title" titleField.placeholder = "Title"
titleField.font = RobotoFont.regularWithSize(20) titleField.font = RobotoFont.regularWithSize(20)
titleField.textColor = MaterialColor.black titleField.textColor = MaterialColor.black
...@@ -580,6 +572,13 @@ Add a new dimension of interactivity with CaptureView. CaptureView is a fully fu ...@@ -580,6 +572,13 @@ Add a new dimension of interactivity with CaptureView. CaptureView is a fully fu
![MaterialKitCaptureView](http://www.materialkit.io/MK/MaterialKitCaptureView.jpg) ![MaterialKitCaptureView](http://www.materialkit.io/MK/MaterialKitCaptureView.jpg)
<a name="materialcolor"/>
### MaterialColor
Explore a complete range of Material Design colors using MaterialColor. Below is an example of setting a button's background color property.
![MaterialKitMaterialColorPalette](http://www.materialkit.io/MK/MaterialKitMaterialColorPalette.png)
### License ### License
[AGPL-3.0](http://choosealicense.com/licenses/agpl-3.0/) [AGPL-3.0](http://choosealicense.com/licenses/agpl-3.0/)
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.25.4</string> <string>1.25.5</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment