-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz1.dart
More file actions
314 lines (258 loc) · 9.29 KB
/
quiz1.dart
File metadata and controls
314 lines (258 loc) · 9.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
import 'package:flutter/material.dart';
import './main.dart';
import './vaish.dart';
import 'last.dart';
var z=new Test();
var finalScore = 0;
var questionNumber = 0;
var quiz = new AnimalQuiz();
class AnimalQuiz{
/*var images = [
"alligator", "cat", "dog", "owl"
];*/
var questions = [
"How old are you?",
"What is your name?",
"In which city do you live?",
"Do you experience visual problems, such as trouble with reading or judging distance or color?",
"What is your Pin code?",
"Do you need more daily assistance?",
"What is your birth month?",
"Select your phone number.",
"What is your birth year?",
"Select your email address."
];
var choices = [
["60", "78", "32", g.a.toString()],
["Ramu", "Princ", g.n.toString(), "Gopal"],
[g.cit.toString(), "aligarh", "kanpur", "bijnor"],
["Never", "sometime", "very often", "Rarely"],
["301019",g.code.toString(),"202001","202396"],
["Never", "sometime", "very often", "Rarely"],
["jaunary","september","june",g.b.toString()],
["789583452","7425081953",g.p.toString(),"8400871753"],
["1982",g.y.toString(),"1988","1996"],
[g.e.toString() ,"123Srm@gmail.com","coder@gmail.com","hhloyal2@gmail.com"]
];
var correctAnswers = [
g.a, g.n, g.cit, "sometime",g.code,"sometime",g.b,g.p,g.y,g.e
];
}
class Quiz1 extends StatefulWidget{
@override
State<StatefulWidget> createState() {
return new Quiz1State();
}
}
class Quiz1State extends State<Quiz1> {
@override
Widget build(BuildContext context) {
return new /*WillPopScope(
onWillPop: () async => true,
child: */Scaffold(
backgroundColor: Colors.black,
body: new Container(
margin: const EdgeInsets.all(10.0),
alignment: Alignment.topCenter,
child: new Column(
children: <Widget>[
new Padding(padding: EdgeInsets.all(20.0)),
new Container(
alignment: Alignment.centerRight,
child: new Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
new Text("Question ${questionNumber + 1} of ${quiz.questions.length}",
style: new TextStyle(
color: Colors.white,
fontSize: 22.0
),),
new Text("Score: $finalScore",
style: new TextStyle(
fontSize: 22.0
),)
],
),
),
/*//image
new Padding(padding: EdgeInsets.all(10.0)),
new Image.asset(
"images/${quiz.images[questionNumber]}.jpg",
),*/
new Padding(padding: EdgeInsets.all(10.0)),
new Text(quiz.questions[questionNumber],
style: new TextStyle(
color: Colors.white,
fontSize: 20.0,
),),
new Padding(padding: EdgeInsets.all(10.0)),
new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
//button 1
new MaterialButton(
minWidth: 120.0,
color: Colors.blueGrey,
onPressed: (){
if(quiz.choices[questionNumber][0] == quiz.correctAnswers[questionNumber]){
debugPrint("Correct");
finalScore++;
}else{
debugPrint("Wrong");
}
updateQuestion();
},
child: new Text(quiz.choices[questionNumber][0],
style: new TextStyle(
fontSize: 20.0,
color: Colors.pink
),),
),
//button 2
new MaterialButton(
minWidth: 120.0,
color: Colors.yellow,
onPressed: (){
if(quiz.choices[questionNumber][1] == quiz.correctAnswers[questionNumber]){
debugPrint("Correct");
finalScore++;
}else{
debugPrint("Wrong");
}
updateQuestion();
},
child: new Text(quiz.choices[questionNumber][1],
style: new TextStyle(
fontSize: 20.0,
color: Colors.orange
),),
),
],
),
new Padding(padding: EdgeInsets.all(10.0)),
new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
//button 3
new MaterialButton(
minWidth: 120.0,
color: Colors.blueGrey,
onPressed: (){
if(quiz.choices[questionNumber][2] == quiz.correctAnswers[questionNumber]){
debugPrint("Correct");
finalScore++;
}else{
debugPrint("Wrong");
}
updateQuestion();
},
child: new Text(quiz.choices[questionNumber][2],
style: new TextStyle(
fontSize: 20.0,
color: Colors.white
),),
),
//button 4
new MaterialButton(
minWidth: 120.0,
color: Colors.blueGrey,
onPressed: (){
if(quiz.choices[questionNumber][3] == quiz.correctAnswers[questionNumber]){
debugPrint("Correct");
finalScore++;
}else{
debugPrint("Wrong");
}
updateQuestion();
},
child: new Text(quiz.choices[questionNumber][3],
style: new TextStyle(
fontSize: 20.0,
color: Colors.white
),),
),
],
),
new Padding(padding: EdgeInsets.all(15.0)),
new Container(
alignment: Alignment.bottomCenter,
child: new MaterialButton(
minWidth: 240.0,
height: 30.0,
color: Colors.green,
onPressed: resetQuiz,
child: new Text("Quit",
style: new TextStyle(
fontSize: 18.0,
color: Colors.white
),)
)
),
],
),
),
)
;
}
void resetQuiz(){
setState(() {
Navigator.pop(context);
finalScore = 0;
questionNumber = 0;
g.n=",";
g.b=",";
g.p=",";
g.e=",";
g.a=",";
g.c=",";
g.y=",";
g.cit=",";
g.code=",";
});
}
void updateQuestion(){
setState(() {
if(questionNumber == quiz.questions.length - 1){
Navigator.push(context, new MaterialPageRoute(builder: (context)=> new ColorGame()));
}else{
questionNumber++;
}
});
}
}
class Summary extends StatelessWidget{
final int score;
Summary({Key key, @required this.score}) : super(key: key);
@override
Widget build(BuildContext context) {
return new /*WillPopScope(
onWillPop: () async => false,
child: */Scaffold(
body: new Container(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text("Final Score: $score",
style: new TextStyle(
fontSize: 35.0
),),
new Padding(padding: EdgeInsets.all(30.0)),
new MaterialButton(
color: Colors.red,
onPressed: (){
questionNumber = 0;
finalScore = 0;
Navigator.pop(context);
},
child: new Text("Reset Quiz",
style: new TextStyle(
fontSize: 20.0,
color: Colors.white
),),)
],
),
),
)
;
}
}