Created
June 15, 2018 02:03
-
-
Save dceddia/9952955173ea93de6f942135d237adac to your computer and use it in GitHub Desktop.
Using Autoshoot inside App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
render() { | |
const { cameraPermission } = this.state; | |
// Render one of 3 things depending on permissions | |
return ( | |
<View style={styles.container}> | |
{cameraPermission === null ? ( | |
<Text>Waiting for permission...</Text> | |
) : cameraPermission === false ? ( | |
<Text>Permission denied</Text> | |
) : ( | |
<Autoshoot/> | |
)} | |
</View> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment