Files
react-native-web/packages/website/storybook/1-components/TextInput/examples/PropNumberOfLines.js
Nicolas Gallagher a8e5d43db5 Move 'website' to 'packages/website'
Keep all workspaces in the 'packages' directory.
2018-06-03 11:32:55 -07:00

27 lines
566 B
JavaScript

/**
* @flow
*/
import React from 'react';
import { styles } from '../helpers';
import { TextInput, View } from 'react-native';
const TextInputNumberOfLinesExample = () => (
<View>
<TextInput
multiline={true}
numberOfLines={2}
placeholder="numberOfLines = 2"
style={[styles.multiline, { height: 'auto' }]}
/>
<TextInput
multiline={true}
numberOfLines={3}
placeholder="numberOfLines = 3"
style={[styles.multiline, { height: 'auto' }]}
/>
</View>
);
export default TextInputNumberOfLinesExample;