mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-01 09:27:14 +08:00
14 lines
326 B
JavaScript
14 lines
326 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;
|