mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-05-08 12:00:41 +08:00
18 lines
340 B
JavaScript
18 lines
340 B
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { styles } from '../helpers';
|
|
import { TextInput } from 'react-native';
|
|
|
|
const TextInputSecureTextEntryExample = () =>
|
|
<TextInput
|
|
defaultValue="abc"
|
|
numberOfLines={2}
|
|
secureTextEntry={true}
|
|
style={styles.textinput}
|
|
/>;
|
|
|
|
export default TextInputSecureTextEntryExample;
|