Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
xinthink committed Jun 5, 2016
1 parent 841ed43 commit 3cbdd4e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A set of UI components, in the purpose of introducing [Material Design][md] to a

[npm-badge]: https://img.shields.io/npm/v/react-native-material-kit.svg
[npm]: https://www.npmjs.com/package/react-native-material-kit
[rn-badge]: https://img.shields.io/badge/react--native-v0.24.x-05A5D1.svg
[rn-badge]: https://img.shields.io/badge/react--native-v0.27.x-05A5D1.svg
[rn]: https://facebook.github.io/react-native
[md]: http://www.google.com/design/spec/material-design/introduction.html
[license-badge]: https://img.shields.io/dub/l/vibe-d.svg
Expand All @@ -21,13 +21,13 @@ A set of UI components, in the purpose of introducing [Material Design][md] to a

## Getting Started

First, `cd` to your RN project directory, and install RNMK through [rnpm](https://github.com/rnpm/rnpm) . If you don't have rnpm, you can install RNMK from npm with the command `npm i -S react-native-material-kit` and link it manually (see below).
First, `cd` to your RN project directory, and install RNMK through [rnpm](https://github.com/rnpm/rnpm) . If you don't have rnpm, you can install RNMK from npm with the command `npm i -S react-native-material-kit` and link it manually (see below).

### iOS
#### Using rnpm
`rnpm install react-native-material-kit`

#### Manualy
#### Manualy
1. Add `node_modules/react-native-material-kit/iOS/RCTMaterialKit.xcodeproj` to your xcode project, usually under the `Libraries` group
1. Add `libRCTMaterialKit.a` (from `Products` under `RCTMaterialKit.xcodeproj`) to build target's `Linked Frameworks and Libraries` list

Expand All @@ -52,7 +52,7 @@ Now run `pod install`. This will create an Xcode workspace containing all necess

### Android

#### Using rnpm
#### Using rnpm
`rnpm install react-native-material-kit`

#### Manually
Expand Down Expand Up @@ -377,7 +377,7 @@ the jsx equivalent:
onCheckedChange={this._onIconChecked}
onPress={this._onIconClicked}
>
<Text
<Text
pointerEvents="none"
style={styles.toggleTextOff}>Off</Text>
<Text state_checked={true}
Expand All @@ -397,7 +397,7 @@ The two `Text` tags here, similar to [State List][android-state-list] in *Androi
#### Switch
```jsx
<mdl.Switch
<mdl.Switch
style={styles.appleSwitch}
onColor="rgba(255,152,0,.3)"
thumbOnColor={MKColor.Orange}
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "react-native-material-kit",
"version": "0.3.1",
"version": "0.3.2",
"description": "Bringing Material Design to React Native",
"main": "lib/index.js",
"author": "Yingxin Wu <yingxinwu.g@gmail.com>",
"contributors": [
"All Contributors (https://github.com/xinthink/react-native-material-kit/graphs/contributors)"
"Quentin Valmori (https://github.com/Crash--)",
"Alexander Price (https://github.com/alexprice91)"
],
"license": "MIT",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion react-native-material-kit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "react-native-material-kit"
s.version = "0.3.1"
s.version = "0.3.2"
s.summary = "Introducing Material Design to apps built with React Native."
s.requires_arc = true
s.author = { 'xinthink' => 'yingxinwu.g@gmail.com' }
Expand Down

0 comments on commit 3cbdd4e

Please sign in to comment.