londonappbrewery / Flutter-Course-Resources

Learn to Code While Building Apps - The Complete Flutter Development Bootcamp
https://www.appbrewery.co
10.29k stars 3.07k forks source link

Quizzler Flutter Challenge Typo #2

Closed jaredbaszler closed 5 years ago

jaredbaszler commented 5 years ago

In quiz_brain.dart there seems to be a typo in the TODO: steps. "Step 4 Part A" should be "Step 4 Part B" instead.

main.dart:

//TODO: Step 4 - Use IF/ELSE to check if we've reached the end of the quiz. If true, execute Part A, B, C, D.
//TODO: Step 4 Part A - show an alert using rFlutter_alert (remember to read the docs for the package!)
//HINT! Step 4 Part B is in the quiz_brain.dart
//TODO: Step 4 Part C - reset the questionNumber,
//TODO: Step 4 Part D - empty out the scoreKeeper.
//TODO: Step 5 - If we've not reached the end, ELSE do the answer checking steps below 👇

quiz_brain.dart:

//TODO: Step 3 Part B - Use a print statement to check that isFinished is returning true when you are indeed at the end of the quiz and when a restart should happen.
//TODO: Step 4 Part A - Create a reset() method here that sets the questionNumber back to 0.
jaredbaszler commented 5 years ago

Already fixed. #https://github.com/londonappbrewery/quizzler-flutter-challenge-starting/pull/2