I have a question component which displays the question and allows user to answer question. If the answer is correct the user score +1, if wrong 0 after clicking on the submit button. I have setup the logic to have the score to be added +1 on the submit button. I have a component state which I am using to show the score, but it is not getting updated. Also, I want to know how to setup the logic to calculate total score on the quiz page where the components are displayed in listview, after clicking the final submission button. So, questions:
How to get the component to display the score based on the action of submit button?
How to setup the logic to calculate total score on the quiz page where the components are displayed in listview, after clicking the final submission button?
How to I save these values to be displayed on QuizResults?