Step 3: Display a Random Question (Detailed Guide)
In this step, we will set up the Quiz Screen so that each time the child plays, a random multiplication question appears with three possible answers.
- Add a Text Component to Show the Multiplication Question
Go to the Quiz Screen in Adalo.
Add a Text Component to display the question.
Set the Text to:
Magic Text → Current Question → Factor A
" × "
Magic Text → Current Question → Factor B
Example Output:
If Factor A = 7 and Factor B = 8, the text will show:
7 × 8 = ?
- Add Three Buttons for Answer Choices
Now, add three buttons for the child to choose the correct answer.
Button 1 (Correct Answer)
Set Label to: Magic Text → Current Question → Correct Answer
Action: If clicked → Navigate to “Success Screen” (where the reward image appears).
Button 2 (Wrong Answer 1)
Set Label to: Magic Text → Current Question → Option 1
Action: If clicked → Show an Alert: “Try Again!”
Button 3 (Wrong Answer 2)
Set Label to: Magic Text → Current Question → Option 2
Action: If clicked → Show an Alert: “Try Again!”
- Add an Input Field (For Typing the Answer) [Optional]
If the child prefers typing the answer instead of selecting a button:
-
Add an Input Field (Numeric Type).
-
Add a Submit Button.
-
Set the Button Action:
If Input Field Value = Magic Text → Current Question → Correct Answer, go to Success Screen.
If incorrect, show “Try Again!” alert.
- Ensure a New Question Appears After Each Attempt
When the user selects an answer, make sure the app picks a new random question from the database.
You can do this by using a List Component to display a random record from the “Multiplication Questions” collection.
Next Steps?
Would you like help with randomizing the questions or adding a score system? 