I\'m really new to React Native and I\'m wondering how can I hide/show a component.
Here\'s my test case:
         
// You can use a state to control wether the component is showing or not
const [show, setShow] = useState(false); // By default won't show
// In return(
{
    show &&  {show == true ? setShow(false) : setShow(true)}}/>