import React from 'react'; import { Input, Icon, Stack } from 'native-base'; import { MaterialIcons } from '@expo/vector-icons'; export const Example = () => { const [show, setShow] = React.useState(false); return ( } size={5} ml="2" color="muted.400" /> } placeholder="Name" /> } size={5} mr="2" color="muted.400" onPress={() => setShow(!show)} /> } placeholder="Password" /> ); };