-
Notifications
You must be signed in to change notification settings - Fork 0
/
Diagnosis_Test.dart
193 lines (184 loc) · 7.08 KB
/
Diagnosis_Test.dart
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
import 'package:flutter/material.dart';
import 'Diagnosis_Result.dart';
void main(){
runApp(const DiagnosisTestPage());
}
class DiagnosisTestPage extends StatelessWidget {
const DiagnosisTestPage({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
appBarTheme: AppBarTheme(
color: Colors.lightBlue.shade900,
),
),
home: DiagnosisTest(),
);
}
}
class LabeledRadio extends StatelessWidget {
const LabeledRadio({
Key? key,
required this.label,
required this.padding,
required this.groupValue,
required this.value,
required this.onChanged,
}) : super(key: key);
final String label;
final EdgeInsets padding;
final int groupValue;
final int value;
final ValueChanged<int> onChanged;
@override
Widget build(BuildContext context) {
return InkWell(
onTap: () {
if (value != groupValue) {
onChanged(value);
}
},
child: Padding(
padding: padding,
child: Row(
children: <Widget>[
Radio<int>(
groupValue: groupValue,
value: value,
onChanged: (int? newValue) {
onChanged(newValue!);
},
),
Text(label),
],
),
),
);
}
}
class DiagnosisTest extends StatefulWidget{
const DiagnosisTest({Key? key}) : super(key: key);
@override
State<DiagnosisTest> createState() => _DiagnosisTest();
}
class _DiagnosisTest extends State<DiagnosisTest>{
final List<String> questions = <String>["일 또는 여가 활동을 하는데 흥미나 즐거움을 느끼지 못함",
"기분이 가라앉거나, 우울하거나, 희망이 없음",
"잠이 들거나 계속 잠을 자는 것이 어려움, 또는 잠을 너무 많이 잠",
"피곤하다고 느끼거나 기운이 거의 없음",
"입맛이 없거나 과식을 함",
"자신을 부정적으로 봄, 혹은 자신이 실패자라고 느끼거나 자신 또는 가족을 실망시킴",
"신문을 읽거나 텔레비전 보는 것과 같은 일에 집중하는 것이 어려움",
"다른사람들이 주목할 정도로 너무 느리게 움직이거나 말을 함, 또는 반대로 평상시보다 많이 움직여서 너무 안절부절 못하거나 들떠 있음",
"자신이 죽는 것이더 낫다고 생각하거나 어떤 식으로든 자신을 해칠 것이라고 생각함"];
final List<String> answers = <String>["전혀 방해 받지 않았다",
"며칠 동안 방해 받았다",
"7일 이상 방해 받았다",
"거의 매일 방해 받았다"];
int _isRadioSelected = 0;
List<int> answer_int = <int>[0,0,0,0,0,0,0,0,0];
@override
Widget build(BuildContext context){
return Scaffold(
appBar: AppBar(
title: Text('우울 진단검사'),
),
body: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Expanded(child:
ListView.separated(
//scrollDirection: Axis.vertical,
//shrinkWrap: true,
padding: const EdgeInsets.all(8),
itemCount: questions.length,
itemBuilder: (BuildContext context, int index) {
return Column(
//height: 100,
children: <Widget>[
Align(
alignment: Alignment.topLeft,
child:
Text(
'${index + 1}. ${questions[index]}',
overflow: TextOverflow.ellipsis,
style: const TextStyle(
height: 5, fontSize: 14, color: Colors.black),
)
),
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <LabeledRadio>[
LabeledRadio(
label: "전혀 방해 받지 않았다",
padding: const EdgeInsets.symmetric(horizontal: 5.0),
value: 1,
groupValue: answer_int[index],
onChanged: (int newValue) {
setState(() {
answer_int[index] = newValue;
});
},
),
LabeledRadio(
label: "며칠 동안 방해 받았다",
padding: const EdgeInsets.symmetric(horizontal: 5.0),
value: 2,
groupValue: answer_int[index],
onChanged: (int newValue) {
setState(() {
answer_int[index] = newValue;
});
},
),
LabeledRadio(
label: "7일 이상 방해 받았다",
padding: const EdgeInsets.symmetric(horizontal: 5.0),
value: 3,
groupValue: answer_int[index],
onChanged: (int newValue) {
setState(() {
answer_int[index] = newValue;
});
},
),
LabeledRadio(
label: "거의 매일 방해 받았다",
padding: const EdgeInsets.symmetric(horizontal: 5.0),
value: 4,
groupValue: answer_int[index],
onChanged: (int newValue) {
setState(() {
answer_int[index] = newValue;
});
},
),
],
),
],
);
},
separatorBuilder: (BuildContext context, int index) => const Divider(),
),
),
Center(
child:
ElevatedButton(
child: Text('결과보기'),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => MyDiagnosisResult())
);
},
),
)
],)
);
}
}