[
  {
    "path": ".babelrc",
    "content": "{\n  \"presets\": [\"react-native\"]\n}\n"
  },
  {
    "path": ".gitignore",
    "content": "### OSX ###\n.DS_Store\n.AppleDouble\n.LSOverride\n\n# Icon must end with two \\r\nIcon\n\n\n# Thumbnails\n._*\n\n# Files that might appear in the root of a volume\n.DocumentRevisions-V100\n.fseventsd\n.Spotlight-V100\n.TemporaryItems\n.Trashes\n.VolumeIcon.icns\n\n# Directories potentially created on remote AFP share\n.AppleDB\n.AppleDesktop\nNetwork Trash Folder\nTemporary Items\n.apdisk\n\n\n### Node ###\n# Logs\nlogs\n*.log\nnpm-debug.log*\n\n# Runtime data\npids\n*.pid\n*.seed\n\n# Directory for instrumented libs generated by jscoverage/JSCover\nlib-cov\n\n# Coverage directory used by tools like istanbul\ncoverage\n\n# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)\n.grunt\n\n# node-waf configuration\n.lock-wscript\n\n# Compiled binary addons (http://nodejs.org/api/addons.html)\nbuild/Release\n\n# Dependency directories\nnode_modules\njspm_packages\n\n# Optional npm cache directory\n.npm\n\n# Optional REPL history\n.node_repl_history\n\n\n### Xcode ###\n# Xcode\n#\n# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore\n\n## Build generated\nbuild/\nDerivedData/\n\n## Various settings\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata/\n\n## Other\n*.moved-aside\n*.xccheckout\n*.xcscmblueprint\n\n\n### Android ###\n# Built application files\n*.apk\n*.ap_\n\n# Files for the Dalvik VM\n*.dex\n\n# Java class files\n*.class\n\n# Generated files\nbin/\ngen/\nout/\n\n# Gradle files\n.gradle/\nbuild/\n\n# Local configuration file (sdk path, etc)\nlocal.properties\n\n# Proguard folder generated by Eclipse\nproguard/\n\n# Log Files\n*.log\n\n# Android Studio Navigation editor temp files\n.navigation/\n\n# Android Studio captures folder\ncaptures/\n\n# Intellij\n*.iml\n\n# Keystore files\n*.jks\n\n### Android Patch ###\ngen-external-apklibs\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: node_js\nnode_js:\n   - \"6\"\n"
  },
  {
    "path": "ChangeLog.md",
    "content": "# [0.2.0](https://github.com/GeekyAnts/react-native-easy-grid/releases/tag/v0.2.0)\n\n### Updated Features\n\n- Upgraded babel-jest to 23.2.0\n- Upgraded babel-preset-react-native to 4\n- Upgraded jest to 23.3.0\n- Upgraded react to 16.4.1\n- Upgraded react-native to 0.56.0\n- Upgraded react-test-renderer to 16.4.1\n\n\n### Bug Fixes\n\n- Compatible with React Native 0.56, fixed `ReactNativePropRegistry` issue.\n"
  },
  {
    "path": "Components/Col.js",
    "content": "'use strict';\n\nimport React, {Component} from 'react';\nimport {View, TouchableOpacity, StyleSheet} from 'react-native';\nimport computeProps from '../Utils/computeProps';\n\n\nexport default class ColumnNB extends Component {\n    prepareRootProps() {\n\n        var flattenedStyle = StyleSheet.flatten(this.props.style)\n\n        var type = {\n        \tflexDirection: 'column',\n        \tflex: (this.props.size) ? this.props.size : (flattenedStyle && flattenedStyle.width) ? 0 : 1,\n        }\n\n        var defaultProps = {\n            style: type\n        }\n        return computeProps(this.props, defaultProps);\n\n    }\n\n    setNativeProps(nativeProps) {\n      this._root.setNativeProps(nativeProps);\n    }\n\n  render() {\n    if(this.props.onPress){\n      return(\n        <TouchableOpacity onPress={this.props.onPress}\n        {...this.prepareRootProps()}>\n    <View\n      ref={component => this._root = component}\n      {...this.props}\n      {...this.prepareRootProps()}\n    >{this.props.children}</View>\n      </TouchableOpacity>\n    );\n    }\n    else{\n      return(\n        <View\n      ref={component => this._root = component}\n      {...this.props}\n      {...this.prepareRootProps()}\n    >{this.props.children}</View>\n    );\n    }\n  }\n\n}\n"
  },
  {
    "path": "Components/Grid.js",
    "content": "'use strict';\n\nimport React, {Component} from 'react';\nimport {View, TouchableOpacity} from 'react-native';\nimport computeProps from '../Utils/computeProps';\nimport Col from './Col';\nimport Row from './Row';\n\n\nexport default class GridNB extends Component {\n    prepareRootProps() {\n\n        var type = {\n            flex: 1,\n            flexDirection: this.ifRow() ? 'column' : 'row'\n        }\n\n        var defaultProps = {\n            style: type\n        }\n\n        return computeProps(this.props, defaultProps);\n\n    }\n\n    ifRow() {\n        var row = false;\n        React.Children.forEach(this.props.children, function (child) {\n            if(child && child.type == Row)\n                row = true;\n        })\n        return row;\n    }\n\n    setNativeProps(nativeProps) {\n      this._root.setNativeProps(nativeProps);\n    }\n\n  render() {\n    if(this.props.onPress){\n      return(\n        <TouchableOpacity onPress={this.props.onPress}>\n    <View\n      ref={component => this._root = component}\n      {...this.props}\n      {...this.prepareRootProps()}\n    >{this.props.children}</View>\n      </TouchableOpacity>\n    );\n    }\n    else{\n      return(\n        <View\n      ref={component => this._root = component}\n      {...this.props}\n      {...this.prepareRootProps()}\n    >{this.props.children}</View>\n    );\n    }\n  }\n\n}\n"
  },
  {
    "path": "Components/Row.js",
    "content": "'use strict';\n\nimport React, {Component} from 'react';\nimport {View, TouchableOpacity, StyleSheet} from 'react-native';\n\nimport computeProps from '../Utils/computeProps';\n\n\nexport default class RowNB extends Component {\n    prepareRootProps() {\n\n        var flattenedStyle = StyleSheet.flatten(this.props.style)\n\n        var type = {\n        \tflexDirection: 'row',\n        \tflex: (this.props.size) ? this.props.size : (flattenedStyle && flattenedStyle.height) ? 0 : 1,\n        }\n\n        var defaultProps = {\n            style: type\n        }\n        return computeProps(this.props, defaultProps);\n\n    }\n\n    setNativeProps(nativeProps) {\n      this._root.setNativeProps(nativeProps);\n    }\n\n    render() {\n      if(this.props.onPress){\n        return(\n            <TouchableOpacity onPress={this.props.onPress}\n            {...this.prepareRootProps()}>\n          <View\n        ref={component => this._root = component}\n        {...this.props}\n        {...this.prepareRootProps()}\n      >{this.props.children}</View>\n          </TouchableOpacity>\n      );\n      }\n      else{\n        return(\n          <View\n            ref={component => this._root = component}\n            {...this.props}\n            {...this.prepareRootProps()}\n          >{this.props.children}</View>\n        );\n      }\n    }\n\n\n}\n"
  },
  {
    "path": "Components/_tests_/Col.test.js",
    "content": "import \"react-native\";\nimport React from \"react\";\nimport Col from \"../Col\";\nimport renderer from \"react-test-renderer\";\n\ntest(\"renders correctly\", () => {\n  const tree = renderer.create(<Col />).toJSON();\n  expect(tree).toMatchSnapshot();\n});\n"
  },
  {
    "path": "Components/_tests_/Grid.test.js",
    "content": "import \"react-native\";\nimport React from \"react\";\nimport Grid from \"../Grid\";\nimport renderer from \"react-test-renderer\";\n\ntest(\"renders correctly\", () => {\n  const tree = renderer.create(<Grid />).toJSON();\n  expect(tree).toMatchSnapshot();\n});\n"
  },
  {
    "path": "Components/_tests_/Row.test.js",
    "content": "import \"react-native\";\nimport React from \"react\";\nimport Row from \"../Row\";\nimport renderer from \"react-test-renderer\";\n\ntest(\"renders correctly\", () => {\n  const tree = renderer.create(<Row />).toJSON();\n  expect(tree).toMatchSnapshot();\n});\n"
  },
  {
    "path": "Components/_tests_/__snapshots__/Col.test.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`renders correctly 1`] = `\n<View\n  style={\n    Object {\n      \"flex\": 1,\n      \"flexDirection\": \"column\",\n    }\n  }\n/>\n`;\n"
  },
  {
    "path": "Components/_tests_/__snapshots__/Grid.test.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`renders correctly 1`] = `\n<View\n  style={\n    Object {\n      \"flex\": 1,\n      \"flexDirection\": \"row\",\n    }\n  }\n/>\n`;\n"
  },
  {
    "path": "Components/_tests_/__snapshots__/Row.test.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`renders correctly 1`] = `\n<View\n  style={\n    Object {\n      \"flex\": 1,\n      \"flexDirection\": \"row\",\n    }\n  }\n/>\n`;\n"
  },
  {
    "path": "ISSUE_TEMPLATE.txt",
    "content": "<!--Hi! Thanks for trying out React Native Easy Grid!-->\n\n<!--Take a look at these before heading towards creating an issue. Before you submit your issue, please make sure to check the following boxes by putting an x in the [ ] (don't: [x ], [ x], do: [x])-->\n\n## I have gone through these following points\n- []   Check latest documentation: https://docs.nativebase.io/\n- []   Check for existing open/closed issues for a possible duplicate before creating a new issue: https://github.com/GeekyAnts/react-native-easy-grid/issues\n- []   Use the latest React Native Easy Grid release\n- []   Check examples from NativeBase KitchenSink https://github.com/GeekyAnts/NativeBase-KitchenSink\n- []   For discussion purpose make use of NativeBase Slack: http://slack.nativebase.io/\n- []   For queries related to theme, check [Theme Variables](https://docs.nativebase.io/docs/ThemeVariables.html) from Docs and live NativeBase Theme Editor http://nativebase.io/customizer/\n\n## Issue Description\n<!-- **DO** fill out the below form to give us a better idea about your environment and help us debug it quicker. Issues without the required details will mostly be closed.-->\n\n### node, npm, package.json, xcode version\n\n### Expected behaviour\n\n### Actual behaviour\n\n### Steps to reproduce\n<!--\n- Include code snippet and output screenshot.\n- Include code snippet in preformatted mode (```code```) and not in screenshot.\n- In case of lengthy code, then cut down into simple screen.\n- Shared snippet should have import statement,  parent component and the topmost component in which the component (for which issue is raised) is wrapped.\n- Issue will be closed abruptly in case of buggy code snippet.\n-->\n\n### Is the bug present in both iOS and Android or in any one of them?\n\n### Any other additional info which would help us debug the issue quicker.\n\n\n<!-- In case of not following the above instructions, the issue will be closed abruptly -->\n"
  },
  {
    "path": "LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright {yyyy} {name of copyright owner}\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "README.md",
    "content": "# React Native Easy Grid 🐵\n![Master Build Status](https://travis-ci.org/GeekyAnts/react-native-easy-grid.svg?branch=master) <br />\n\nThis is NOT-JUST-ANOTHER-GRID-LAYOUT library! We are trying to simplify flexbox with easier approach.\n\n\n## About\n\n   React Native Easy Grid is part of the NativeBase ecosystem,\n   built by [GeekyAnts](https://geekyants.com?utm_source=github&utm_medium=opensource&utm_campaign=react-native-easy-grid).\n\n   We specialize in:\n   - [React Native Development](https://geekyants.com/hire-react-native-developers?utm_source=github&utm_medium=opensource&utm_campaign=react-native-easy-grid) -\n     Expert mobile app development\n   - [UI/UX Design Services](https://geekyants.com/service/ui-ux-design-services?utm_source=github&utm_medium=opensource&utm_campaign=react-native-easy-grid) -\n     Creating intuitive user interfaces\n\n   Need a custom layout solution? [Let's talk](https://geekyants.com/hire?utm_source=github&utm_medium=opensource&utm_campaign=react-native-easy-grid)\n\n## Installation\n\n```\nnpm install react-native-easy-grid --save\n```\n\n## Usage\n\n### Include the components\n\n```\nimport { Col, Row, Grid } from \"react-native-easy-grid\";\n```\n\n### 1. Two columns (50% and 50%)\n\n```\n<Grid>\n    <Col></Col>\n    <Col></Col>\n</Grid>\n```\n\n![col-50-50](Examples/col-50-50.png \"Column 50% and 50% example\")\n\n\n\n> Note: If you don't assign the size property, it defaults to equal width (or height) with its siblings\n\n### 2. Two rows\n\n```\n<Grid>\n    <Row></Row>\n    <Row></Row>\n</Grid>\n```\n\n![row-50-50](Examples/row-50-50.png \"Row 50% and 50% example\")\n\n\n### 3. Two rows (75% and 25%)\n\n```\n<Grid>\n    <Row size={75}></Row>\n    <Row size={25}></Row>\n</Grid>\n```\n\nThis is exactly same as\n\n```\n<Grid>\n    <Row size={3}></Row>\n    <Row size={1}></Row>\n</Grid>\n```\n\n![row-75-25](Examples/row-75-25.png \"Row 75% and 25% example\")\n\n> Same concept applies to `<Col />`\n\n\n### 4. Three columns (33.33% each)\n\n```\n<Grid>\n    <Col></Col>\n    <Col></Col>\n    <Col></Col>\n</Grid>\n```\n![col-33-33-33](Examples/col-33-33-33.png \"Column 33.33% each\")\n\n### 5. Three rows (50%, 25% and 25%)\n\n```\n<Grid>\n    <Row size={2}></Row>\n    <Row size={1}></Row>\n    <Row size={1}></Row>\n</Grid>\n```\n\n![row-50-25-25](Examples/row-50-25-25.png \"Row 50%, 25% and 50% example\")\n\n### 6. Nested Layout or Grid\n\n<table width=\"100\" height=\"100\">\n    <tr>\n        <td rowspan=\"2\" bgcolor=\"red\" width=\"50\">1</td>\n        <td bgcolor=\"yellow\" width=\"50\" height=\"50\">2</td>\n    </tr>\n    <tr>\n        <td bgcolor=\"blue\">3</td>\n    </tr>\n</table>\n\n```\n<Grid>\n    <Col>\n        <Text>1</Text>\n    </Col>\n    <Col>\n        <Row>\n            <Text>2</Text>\n        </Row>\n        <Row>\n            <Text>3</Text>\n        </Row>\n    </Col>\n</Grid>\n```\n\n![complex](Examples/complex.png \"Complex and Nested Layouts\")\n\n\n\n### 7. Fixed width and fluid width combination\n\n```\n<Grid>\n    <Col style={{ width: 40 }}>\n        <Text>Fixed width</Text>\n    </Col>\n    <Col>\n        <Text>Fluid width</Text>\n    </Col>\n</Grid>\n```\n\n![col-fluid-fixed.png](Examples/col-fluid-fixed.png \"Column fluid and fixed example\")\n\n\n### 8. Fixed height and fluid height combination\n\n```\n<Grid>\n    <Row style={{ height: 40 }}>\n        <Text>Fixed width</Text>\n    </Row>\n    <Row>\n        <Text>Fluid width</Text>\n    </Row>\n</Grid>\n```\n\nDo you think anything could be simpler than that? This repo is part of our bigger project called [NativeBase.io](http://nativebase.io). Do check that!\n\n# Important note about usage with `<ScrollView />`\n\n> Note: If you're using `<Row />` inside a `<ScrollView />`, the height of the <Row /> component would be flexible according to the content, though you can always apply the `height` styling.\n"
  },
  {
    "path": "Utils/computeProps.js",
    "content": "import React from \"react\";\nimport { StyleSheet } from \"react-native\";\nimport _ from 'lodash';\n\nfunction computeProps(incomingProps, defaultProps) {\n  // External props has a higher precedence\n  var computedProps = {};\n\n  incomingProps = _.clone(incomingProps);\n  delete incomingProps.children;\n\n  var incomingPropsStyle = incomingProps.style;\n  delete incomingProps.style;\n\n  // console.log(defaultProps, incomingProps);\n\n  if (incomingProps) _.merge(computedProps, defaultProps, incomingProps);\n  else computedProps = defaultProps;\n\n  // Pass the merged Style Object instead\n  if (incomingPropsStyle) {\n    var computedPropsStyle = {};\n    computedProps.style = {};\n    if (Array.isArray(incomingPropsStyle)) {\n      _.forEach(incomingPropsStyle, style => {\n        if (typeof style == \"number\") {\n          _.merge(computedPropsStyle, StyleSheet.flatten(style));\n        } else {\n          _.merge(computedPropsStyle, style);\n        }\n      });\n    } else {\n      if (typeof incomingPropsStyle == \"number\") {\n        computedPropsStyle = StyleSheet.flatten(\n          incomingPropsStyle\n        );\n      } else {\n        computedPropsStyle = incomingPropsStyle;\n      }\n    }\n\n    _.merge(computedProps.style, defaultProps.style, computedPropsStyle);\n  }\n\n  // console.log(\"computedProps \", computedProps);\n\n  return computedProps;\n};\n\nexport default computeProps;\n"
  },
  {
    "path": "index.d.ts",
    "content": "declare module \"react-native-easy-grid\" {\n\n    import {Component} from \"react\";\n    import {ViewProperties} from \"react-native\";\n\n    export interface RowProps extends ViewProperties {\n        size?: number\n        onPress?: () => void\n    }\n\n    export interface ColProps extends ViewProperties {\n        size?: number\n        onPress?: () => void\n    }\n\n    export class Grid extends Component<ViewProperties, any> {}\n    export class Row extends Component<RowProps, any> {}\n    export class Col extends Component<ColProps, any> {}\n}\n"
  },
  {
    "path": "index.js",
    "content": "/* @flow */\n'use strict';\n\nimport Row from './Components/Row';\nimport Grid from './Components/Grid';\nimport Col from './Components/Col';\n\nexport { Row, Grid, Col }\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"react-native-easy-grid\",\n  \"description\": \"Easy React Native Layout & Grid for the Dumb\",\n  \"version\": \"0.2.2\",\n  \"private\": false,\n  \"dependencies\": {\n    \"lodash\": \"^4.17.15\"\n  },\n  \"scripts\": {\n    \"test\": \"jest\"\n  },\n  \"jest\": {\n    \"preset\": \"react-native\",\n    \"modulePathIgnorePatterns\": [\n      \"acorn\",\n      \"core-js\",\n      \"isarray\",\n      \"wordwrap\",\n      \"convert-source-map\",\n      \"source-map\",\n      \"which\",\n      \"assert-plus\",\n      \"esprima\",\n      \"path-exists\",\n      \"glob\",\n      \"object-assign\",\n      \"repeating\",\n      \"supports-color\",\n      \"json-stable-stringify\",\n      \"minimist\",\n      \"duplexer2\",\n      \"readable-stream\",\n      \"extend\",\n      \"lru-cache\",\n      \"minimatch\",\n      \"async\",\n      \"punycode\",\n      \"clone\",\n      \"graceful-fs\",\n      \"strip-bom\",\n      \"through2\",\n      \"vinyl\",\n      \"camelcase\"\n    ]\n  },\n  \"devDependencies\": {\n    \"babel-eslint\": \"^6.0.4\",\n    \"babel-jest\": \"23.2.0\",\n    \"babel-preset-react-native\": \"4.0.0\",\n    \"eslint\": \"^2.9.0\",\n    \"eslint-plugin-react\": \"^5.0.1\",\n    \"eslint-plugin-react-native\": \"^1.0.0\",\n    \"jest\": \"23.3.0\",\n    \"react\": \"16.4.1\",\n    \"react-native\": \"^0.60.4\",\n    \"react-test-renderer\": \"16.4.1\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/GeekyAnts/react-native-easy-grid.git\"\n  },\n  \"main\": \"index.js\"\n}\n"
  }
]