Created
April 27, 2022 15:23
-
-
Save tanner-west/d9ca061683b5103cd835b60c64378708 to your computer and use it in GitHub Desktop.
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
return ( | |
<SafeAreaView> | |
<ScrollView style={{padding: 10}}> | |
{!quizIsDone ? ( | |
<> | |
<View> | |
{questions && questions.length > 0 ? ( | |
<Question | |
question={questions[currentQuestion]} | |
onSubmit={onSubmit} | |
/> | |
) : null} | |
</View> | |
<View> | |
<Button | |
style={{marginVertical: 5}} | |
onPress={onNextQuestion} | |
disabled={!isSubmitted}> | |
Next | |
</Button> | |
</View> | |
</> | |
) : ( | |
<View> | |
<Results results={results.current} /> | |
<Button onPress={() => navigation.navigate('Home')}>Go Home</Button> | |
</View> | |
)} | |
</ScrollView> | |
</SafeAreaView> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment