import React from 'react'; import { Input, Button, Box } from 'native-base'; export const Example = () => { const [show, setShow] = React.useState(false); const handleClick = () => setShow(!show); return ( {show ? 'Hide' : 'Show'} } placeholder="Password" /> ); };