I am using nativebase and want to render two columns in a row with loop. Something like this:
<Row>
<Col>item 1</Col>
<Col>item 2</Col>
</Row>
<Row>
<Col>item 3</Col>
<Col>item 4</Col>
</Row>
How can I achieve it in JSX ?
I am using nativebase and want to render two columns in a row with loop. Something like this:
<Row>
<Col>item 1</Col>
<Col>item 2</Col>
</Row>
<Row>
<Col>item 3</Col>
<Col>item 4</Col>
</Row>
How can I achieve it in JSX ?