I\'m really new to React Native and I\'m wondering how can I hide/show a component. Here\'s my test case:
in render() you can conditionally show the JSX or return null as in:
render(){ return({yourCondition ? : null}); }