mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-18 04:25:29 +00:00
27 lines
735 B
JavaScript
27 lines
735 B
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { WithLabel, styles } from '../helpers';
|
|
import { TextInput, View } from 'react-native';
|
|
|
|
const TextInputAutoCapitalizeExample = () => (
|
|
<View>
|
|
<WithLabel label="none">
|
|
<TextInput autoCapitalize="none" style={styles.textinput} />
|
|
</WithLabel>
|
|
<WithLabel label="sentences">
|
|
<TextInput autoCapitalize="sentences" style={styles.textinput} />
|
|
</WithLabel>
|
|
<WithLabel label="words">
|
|
<TextInput autoCapitalize="words" style={styles.textinput} />
|
|
</WithLabel>
|
|
<WithLabel label="characters">
|
|
<TextInput autoCapitalize="characters" style={styles.textinput} />
|
|
</WithLabel>
|
|
</View>
|
|
);
|
|
|
|
export default TextInputAutoCapitalizeExample;
|