Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2021-035-CoviDefender
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2021-035
2021-035-CoviDefender
Commits
0cbc0d9c
Commit
0cbc0d9c
authored
Jun 22, 2021
by
Indika NK
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Basic logic to selfcare part
parent
3ffd8308
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
182 additions
and
1 deletion
+182
-1
lib/I_GUIDER/i_guider.dart
lib/I_GUIDER/i_guider.dart
+4
-1
lib/pages/self_carer/SC_result_screen.dart
lib/pages/self_carer/SC_result_screen.dart
+35
-0
lib/pages/self_carer/model/Symptoms.dart
lib/pages/self_carer/model/Symptoms.dart
+9
-0
lib/pages/self_carer/sc_main_screen.dart
lib/pages/self_carer/sc_main_screen.dart
+134
-0
No files found.
lib/I_GUIDER/i_guider.dart
View file @
0cbc0d9c
import
'package:covidefender/pages/heart_rate/heart_rate_screen.dart'
;
import
'package:covidefender/pages/mask_detect/invoker.dart'
;
import
'package:covidefender/pages/self_carer/sc_main_screen.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/material.dart'
;
...
...
@@ -136,7 +137,9 @@ class I_guider extends StatelessWidget {
''
,
style:
TextStyle
(
fontWeight:
FontWeight
.
bold
),
),
onPressed:
()
{},
onPressed:
()
{
Navigator
.
push
(
context
,
MaterialPageRoute
(
builder:
(
context
)=>
SC_main
()));
},
shape:
RoundedRectangleBorder
(
borderRadius:
BorderRadius
.
circular
(
10
)),
),
...
...
lib/pages/self_carer/SC_result_screen.dart
0 → 100644
View file @
0cbc0d9c
import
'package:covidefender/pages/self_carer/Custom_Switch.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/material.dart'
;
class
SC_resultScreen
extends
StatelessWidget
{
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
appBar:
AppBar
(
title:
Text
(
'Results'
),
),
body:
Center
(
child:
Column
(
children:
[
Center
(
child:
Container
(
width:
MediaQuery
.
of
(
context
).
size
.
width
,
height:
MediaQuery
.
of
(
context
).
size
.
height
/
2.5
,
child:
Image
.
asset
(
'lib/assets/images/hero.gif'
)),
),
Text
(
"Analysis Results"
),
ElevatedButton
(
onPressed:
(){},
child:
Text
(
'Medical Support'
))
],
),
),
);
}
}
lib/pages/self_carer/model/Symptoms.dart
0 → 100644
View file @
0cbc0d9c
class
Symptoms
{
String
symptomname
;
bool
value
;
Symptoms
(
this
.
symptomname
,
this
.
value
);
@override
String
toString
()
{
return
'Symptoms{symptomname:
$symptomname
, value:
$value
}'
;
}
}
\ No newline at end of file
lib/pages/self_carer/sc_main_screen.dart
0 → 100644
View file @
0cbc0d9c
import
'dart:collection'
;
import
'package:covidefender/pages/self_carer/Custom_Switch.dart'
;
import
'package:covidefender/pages/self_carer/SC_result_screen.dart'
;
import
'package:flutter/material.dart'
;
import
'package:quiver/collection.dart'
;
import
'model/Symptoms.dart'
;
class
SC_main
extends
StatefulWidget
{
@override
SC_mainState
createState
()
=>
SC_mainState
();
}
class
SC_mainState
extends
State
<
SC_main
>
{
bool
isPositiveMatch
=
false
;
// String symptom = "i am a symptom";
// HashMap symptomMap = new HashMap<int,String>();
Map
<
String
,
bool
>
symptomList
=
HashMap
();
Map
<
String
,
bool
>
values
=
{
'Fever With Chills'
:
false
,
'Cough and Sneezing'
:
false
,
'Difficulty in Breathing'
:
false
,
'Sore throat / Blush lips'
:
false
,
'Mustle Pain or Ache'
:
false
,
};
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
appBar:
AppBar
(
title:
Text
(
"Self-Carer"
),
),
body:
Container
(
child:
SingleChildScrollView
(
child:
Column
(
children:
[
Container
(
width:
MediaQuery
.
of
(
context
).
size
.
width
,
height:
MediaQuery
.
of
(
context
).
size
.
height
/
2.5
,
child:
Image
.
asset
(
'lib/assets/images/hero.gif'
)),
SizedBox
(
height:
300
,
child:
new
ListView
(
children:
values
.
keys
.
map
((
String
key
)
{
return
new
CheckboxListTile
(
title:
new
Text
(
key
),
value:
values
[
key
],
onChanged:
(
bool
value
)
{
setState
(()
{
values
[
key
]
=
value
;
symptomList
.
clear
();
values
.
forEach
((
key
,
value
)
{
print
(
'
${key}
:
${value}
'
);
if
(
value
)
{
symptomList
.
putIfAbsent
(
key
,
()
=>
value
);
// if(symptomList.containsKey('Food') && symptomList.containsKey('Materials') ){
// print("all is here");
// }else if(symptomList.containsKey('Food')){
// print("Food only is here");
// Navigator.push(context, MaterialPageRoute(builder: (context)=>HomeScreen()));
// Navigator.pop(context);
// }
print
(
'Selected Items::'
+
symptomList
.
toString
());
}
});
});
print
(
key
);
},
);
}).
toList
(),
),
)
// Padding(
// padding: const EdgeInsets.all(8.0),
// child: Card(
// elevation: 8,
// shape: RoundedRectangleBorder(
// borderRadius: BorderRadius.circular(15)),
// color: Colors.lightBlueAccent[100],
// child: Row(
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
// children: [
// Container(
// child: Image(
// image:
// AssetImage('lib/assets/images/man80.png'))),
// // SizedBox(width: 50),
// Text("Fever With Chills",style: TextStyle(color: Colors.white)),
// // SizedBox(width: 70),
// Checkbox(value: cbTestvalue, onChanged: (bool value){
// setState(() {
//
// });
// })
//
//
//
],
),
),
),
floatingActionButton:
FloatingActionButton
(
onPressed:
()
=>
{
if
(
symptomList
.
isEmpty
)
{
print
(
"Please select your Symptoms"
)}
else
{
if
(
symptomList
.
containsKey
(
'Fever With Chills'
)
&&
symptomList
.
containsKey
(
'Cough and Sneezing'
)
&&
symptomList
.
containsKey
(
'Difficulty in Breathing'
)
&&
symptomList
.
containsKey
(
'Sore throat / Blush lips'
)
&&
symptomList
.
containsKey
(
'Mustle Pain or Ache'
)){
print
(
"Positive Match Found Immediate Treatements needed !"
),
Navigator
.
push
(
context
,
MaterialPageRoute
(
builder:
(
context
)
=>
SC_resultScreen
()))
}
}
},
child:
Icon
(
// Icons.next_plan_outlined
Icons
.
double_arrow_rounded
)),
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment