import * as React from 'react'; import { TextInput } from 'react-native'; import { Page, Section } from '../components/Page'; export default function TextInputScreen() { const [singleLineValue, updateSingle] = React.useState(''); const [secureTextValue, updateSecure] = React.useState(''); const textInputStyle: React.ComponentProps['style'] = { width: '80%', borderRadius: 2, borderWidth: 1, borderColor: '#eee', fontSize: 15, padding: 5, height: 40, }; return (
); } TextInputScreen.navigationOptions = { title: 'TextInput', };