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

28 lines
623 B
JavaScript

/**
* @flow
*/
import React from 'react';
import { styles } from '../helpers';
import { TextInput, View } from 'react-native';
const TextInputClearTextOnFocusExample = () => (
<View>
<TextInput
clearTextOnFocus={true}
defaultValue="text is cleared on focus"
placeholder="text is cleared on focus"
style={styles.textinput}
/>
<TextInput
clearTextOnFocus={true}
defaultValue="text is cleared on focus"
multiline={true}
placeholder="text is cleared on focus"
style={styles.multiline}
/>
</View>
);
export default TextInputClearTextOnFocusExample;