import React from 'react'; import { Stack, Factory, Button } from 'native-base'; import { TextInput } from 'react-native'; export const Example = () => { const NBInput = Factory(TextInput); const inputRef: any = React.useRef(null); return ( ); };