This repository was archived by the owner on Mar 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -55,4 +55,5 @@ The main difference is you can specify the grid size. By default `<Row>` is a si
5555* Hiding Items
5656
5757# To Do
58+ * Testing.
5859* Horizontal Display(Not sure if needed/wanted)
Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-flexbox-grid" ,
3- "version" : " 0.0.10 " ,
3+ "version" : " 0.0.11 " ,
44 "description" : " Grid system for react native based on flexbox grid's api" ,
55 "main" : " src/index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default class Row extends Component {
4242 }
4343
4444 render ( ) {
45- //if row doesn't or is 0 exist default to 12
45+ //if size doesn't exist or is 0 default to 12
4646 let rowSize = this . props . size > 0 ? this . props . size : 12 ;
4747 if ( this . state . hidden ) {
4848 return null ;
Original file line number Diff line number Diff line change 11export { default as Row } from './components/Row' ;
22export { default as Column } from './components/Column' ;
3- export { default as ScreenSize } from './lib/ScreenSize' ;
3+ export { screenSize as SCREEN_SIZE } from './lib/ScreenSize' ;
You can’t perform that action at this time.
0 commit comments