Row

import React from 'react';
import { View, Text } from 'react-native';
import { Row } from 'monalisa-ui';
const Example = () => (
<View>
<Row>
<Text>Value 1</Text>
<Text>Value 2</Text>
<Text>Value 3</Text>
</Row>
</View>
);
export default Example;Configuration
Example
Last updated