Align children from top to bottom. If wrapping is enabled then the next line will start to the left first item on the top of the container.
import React from 'react';
import { Text } from 'react-native';
import { Col } from 'monalisa-ui';
const Example = () => (
<Col>
<Text>Value 1</Text>
<Text>Value 2</Text>
<Text>Value 3</Text>
</Col>
);
export default Example;
import React from 'react';
import { Text } from 'react-native';
import { Col } from 'monalisa-ui';
const Example = () => (
<Col content="column">
<Text>Value 1</Text>
<Text>Value 2</Text>
<Text>Value 3</Text>
</Col>
);
export default Example;
import React from 'react';
import { Text } from 'react-native';
import { Col } from 'monalisa-ui';
const Example = () => (
<Col content="column-reverse">
<Text>Value 1</Text>
<Text>Value 2</Text>
<Text>Value 3</Text>
</Col>
);
export default Example;