Skip to content
This repository was archived by the owner on Mar 15, 2025. It is now read-only.

Commit c668cf2

Browse files
committed
updated readme with new documentation links
1 parent bdcb0e6 commit c668cf2

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
npm-debug.log
2+
node_modules/

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
tests/
2+
node_modules/
23
CHANGELOG.md

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ The api is inspired by
4747

4848
The main difference is you can specify the grid size. By default `<Row>` is a size of 12. However if you want you can make a `<Row>` any size you want.
4949

50+
### More Documentation
51+
52+
[Documentation](https://github.com/rundmt/react-native-flexbox-grid/wiki/Documentation)
53+
5054
#### Changes for 0.2.0
5155

5256
As of 0.2.0 Row will automatically wrap components. If you do not want components to automatically wrap you must specify `nowrap` in the row's prop.
@@ -64,6 +68,4 @@ As of 0.2.0 Row will automatically wrap components. If you do not want component
6468
* Basic Unit Testing
6569

6670
### To Do
67-
* Jest Testing. (Possibly New Examples Repo)
68-
* More Examples
69-
* More Documentation
71+
* Integration Testing. (Possibly New Examples Repo)

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "react-native-flexbox-grid",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Grid system for react native based on flexbox grid's api",
55
"main": "src/index.js",
66
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
7+
"test": "mocha -R spec /tests/getComponentOffset-specs.js"
88
},
99
"repository": {
1010
"type": "git",
@@ -22,5 +22,8 @@
2222
"bugs": {
2323
"url": "https://github.com/rundmt/react-native-flexbox-grid/issues"
2424
},
25-
"homepage": "https://github.com/rundmt/react-native-flexbox-grid#readme"
25+
"homepage": "https://github.com/rundmt/react-native-flexbox-grid#readme",
26+
"devDependencies": {
27+
"mocha": "^2.4.5"
28+
}
2629
}

src/components/Row.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export default class Row extends Component {
5555

5656
Row.propTypes = {
5757
size: PropTypes.number,
58+
nowrap: PropTypes.bool,
5859
smHidden: PropTypes.bool,
5960
mdHidden: PropTypes.bool,
6061
lgHidden: PropTypes.bool,

0 commit comments

Comments
 (0)