to use a textInput you should use <TextInput>
tag in react native.
for example, to create an email input you can write something like this :
import * as React from 'react';
import { TextInput } from 'react-native';
const Component= () => {
const [text, setText] = React.useState('');
return (
<TextInput
label="Email"
value={text}
onChangeText={text => setText(text)}
/>
);
};