Commit ac99a794 authored by Piyumi Dayarathna's avatar Piyumi Dayarathna 💬

Modifications in STracker

parent 15008cc1
No preview for this file type
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "covidefender",
"request": "launch",
"type": "dart"
},
{
"name": "covidefender (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
}
]
}
\ No newline at end of file
......@@ -73,14 +73,84 @@ class _homepageState extends State<homepage> {
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold(
appBar: AppBar(
title: Text("STracker"),
),
body: ListView(
children: <Widget>[
customcard("Start Quiz", images[0]),
],
),
);
appBar: AppBar(
title: Text("STracker"),
),
body: Column(
children: <Widget>[
Expanded(
flex: 1,
child: ButtonTheme(
minWidth: 800.0,
height: 100.0,
child: RaisedButton(
color: Colors.redAccent,
onPressed: () {},
child: Text(
"Hand Washing",
style: TextStyle(color: Colors.white, fontSize: 30),
),
),
)),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 5,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/handWashingStart.gif",
),
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => getjson(),
));
},
child: Text(
"Start Quiz",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -90,7 +90,7 @@ class _quizpageState extends State<quizpage> {
canceltimer = false;
timer = 60;
setState(() {
if (i < 5) {
if (i < 8) {
i++;
} else {
Navigator.of(context).pushReplacement(MaterialPageRoute(
......@@ -107,7 +107,7 @@ class _quizpageState extends State<quizpage> {
void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5;
marks = marks + 15;
colortoshow = right;
} else {
colortoshow = wrong;
......@@ -131,15 +131,20 @@ class _quizpageState extends State<quizpage> {
hangState = 3;
} else if (x == 4) {
hangState = 4;
} else {
} else if (x == 5) {
hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => resultpage(marks: marks),
));
}
}
Widget choicebutton(String k) {
return Padding(
padding: EdgeInsets.symmetric(
vertical: 10.0,
vertical: 20.0,
horizontal: 20.0,
),
child: MaterialButton(
......@@ -148,15 +153,15 @@ class _quizpageState extends State<quizpage> {
mydata[1][i.toString()][k],
style: TextStyle(
color: Colors.white,
fontSize: 16.0,
fontSize: 20.0,
),
maxLines: 1,
),
color: btncolor[k],
splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700],
minWidth: 200.0,
height: 45.0,
minWidth: 500.0,
height: 70.0,
shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
),
......@@ -191,19 +196,22 @@ class _quizpageState extends State<quizpage> {
child: Scaffold(
body: Column(
children: <Widget>[
SizedBox(
height: 20,
),
Expanded(
flex: 5,
flex: 4,
child: Material(
elevation: 20.0,
child: Container(
width: 200.0,
height: 150.0,
width: 400.0,
height: 50.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 200.0,
height: 200.0,
width: 400.0,
height: 375.0,
child: ClipRRect(
child: Image(
image: AssetImage(
......@@ -216,15 +224,18 @@ class _quizpageState extends State<quizpage> {
)),
),
),
SizedBox(
height: 20,
),
Expanded(
flex: 2,
flex: 1,
child: Container(
padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft,
child: Text(
mydata[0][i.toString()],
style: TextStyle(
fontSize: 16.0,
fontSize: 30.0,
fontWeight: FontWeight.w700,
),
),
......@@ -234,7 +245,7 @@ class _quizpageState extends State<quizpage> {
),
),
Expanded(
flex: 6,
flex: 5,
child: Container(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
......
......@@ -27,81 +27,86 @@ class _resultpageState extends State<resultpage> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"Result",
appBar: AppBar(
title: Text(
"Result - Hand Washing",
),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 7,
child: Material(
elevation: 10.0,
child: Container(
width: 300.0,
height: 300.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 300.0,
height: 300.0,
child: ClipRRect(
child: Image(
image:
AssetImage("lib/assets/images/gameover.jpg"),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 3,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/gameover.gif",
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"You Scored $marks marks",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
))
],
)),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"Continue",
"You Scored $marks marks",
style: TextStyle(
fontSize: 18.0,
fontSize: 30.0,
fontWeight: FontWeight.w900,
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
borderSide: BorderSide(width: 3.0, color: Colors.indigo),
splashColor: Colors.indigoAccent,
)
],
),
)
],
),
);
)),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text(
"Continue",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -91,7 +91,7 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
canceltimer = false;
timer = 60;
setState(() {
if (i < 5) {
if (i < 8) {
i++;
} else {
Navigator.of(context).pushReplacement(MaterialPageRoute(
......@@ -108,7 +108,7 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5;
marks = marks + 20;
colortoshow = right;
} else {
colortoshow = wrong;
......@@ -132,15 +132,20 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
hangState = 3;
} else if (x == 4) {
hangState = 4;
} else {
} else if (x == 5) {
hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => maskWearingResultPage(marks: marks),
));
}
}
Widget choicebutton(String k) {
return Padding(
padding: EdgeInsets.symmetric(
vertical: 10.0,
vertical: 20.0,
horizontal: 20.0,
),
child: MaterialButton(
......@@ -149,15 +154,15 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
mydata[1][i.toString()][k],
style: TextStyle(
color: Colors.white,
fontSize: 16.0,
fontSize: 20.0,
),
maxLines: 1,
),
color: btncolor[k],
splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700],
minWidth: 200.0,
height: 45.0,
minWidth: 500.0,
height: 70.0,
shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
),
......@@ -193,18 +198,18 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
body: Column(
children: <Widget>[
Expanded(
flex: 5,
flex: 4,
child: Material(
elevation: 20.0,
child: Container(
width: 200.0,
height: 150.0,
width: 400.0,
height: 50.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 200.0,
height: 200.0,
width: 400.0,
height: 375.0,
child: ClipRRect(
child: Image(
image: AssetImage(
......@@ -218,14 +223,14 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
),
),
Expanded(
flex: 2,
flex: 1,
child: Container(
padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft,
child: Text(
mydata[0][i.toString()],
style: TextStyle(
fontSize: 16.0,
fontSize: 30.0,
fontWeight: FontWeight.w700,
),
),
......
......@@ -4,7 +4,8 @@ import 'package:flutter/services.dart';
class maskWearingQuizStartPage extends StatefulWidget {
@override
_maskWearingQuizStartPageState createState() => _maskWearingQuizStartPageState();
_maskWearingQuizStartPageState createState() =>
_maskWearingQuizStartPageState();
}
class _maskWearingQuizStartPageState extends State<maskWearingQuizStartPage> {
......@@ -73,14 +74,84 @@ class _maskWearingQuizStartPageState extends State<maskWearingQuizStartPage> {
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold(
appBar: AppBar(
title: Text("STracker"),
),
body: ListView(
children: <Widget>[
customcard("Start Quiz", images[0]),
],
),
);
appBar: AppBar(
title: Text("STracker"),
),
body: Column(
children: <Widget>[
Expanded(
flex: 1,
child: ButtonTheme(
minWidth: 800.0,
height: 100.0,
child: RaisedButton(
color: Colors.redAccent,
onPressed: () {},
child: Text(
"Mask Wearing",
style: TextStyle(color: Colors.white, fontSize: 30),
),
),
)),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 5,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/maskWearingStart.gif",
),
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => getjsonMaskWearing(),
));
},
child: Text(
"Start Quiz",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -27,81 +27,86 @@ class _maskWearingResultPageState extends State<maskWearingResultPage> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"Result for Mask Wearing",
appBar: AppBar(
title: Text(
"Result - Mask Wearing",
),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 7,
child: Material(
elevation: 10.0,
child: Container(
width: 300.0,
height: 300.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 300.0,
height: 300.0,
child: ClipRRect(
child: Image(
image:
AssetImage("lib/assets/images/gameover.jpg"),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 3,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/gameover.gif",
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"You Scored $marks marks",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"Continue",
"You Scored $marks marks",
style: TextStyle(
fontSize: 18.0,
fontSize: 30.0,
fontWeight: FontWeight.w900,
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
borderSide: BorderSide(width: 3.0, color: Colors.indigo),
splashColor: Colors.indigoAccent,
)
],
),
)
],
),
);
)),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text(
"Continue",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -91,7 +91,7 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
canceltimer = false;
timer = 60;
setState(() {
if (i < 5) {
if (i < 8) {
i++;
} else {
Navigator.of(context).pushReplacement(MaterialPageRoute(
......@@ -108,7 +108,7 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5;
marks = marks + 10;
colortoshow = right;
} else {
colortoshow = wrong;
......@@ -132,15 +132,20 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
hangState = 3;
} else if (x == 4) {
hangState = 4;
} else {
} else if (x == 5) {
hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => publicPlacesResultPage(marks: marks),
));
}
}
Widget choicebutton(String k) {
return Padding(
padding: EdgeInsets.symmetric(
vertical: 10.0,
vertical: 20.0,
horizontal: 20.0,
),
child: MaterialButton(
......@@ -149,15 +154,15 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
mydata[1][i.toString()][k],
style: TextStyle(
color: Colors.white,
fontSize: 16.0,
fontSize: 20.0,
),
maxLines: 1,
),
color: btncolor[k],
splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700],
minWidth: 200.0,
height: 45.0,
minWidth: 500.0,
height: 70.0,
shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
),
......@@ -193,18 +198,18 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
body: Column(
children: <Widget>[
Expanded(
flex: 5,
flex: 4,
child: Material(
elevation: 20.0,
child: Container(
width: 200.0,
height: 150.0,
width: 400.0,
height: 50.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 200.0,
height: 200.0,
width: 400.0,
height: 375.0,
child: ClipRRect(
child: Image(
image: AssetImage(
......@@ -218,14 +223,14 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
),
),
Expanded(
flex: 2,
flex: 1,
child: Container(
padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft,
child: Text(
mydata[0][i.toString()],
style: TextStyle(
fontSize: 16.0,
fontSize: 30.0,
fontWeight: FontWeight.w700,
),
),
......
......@@ -4,7 +4,8 @@ import 'package:flutter/services.dart';
class publicPlacesQuizStartPage extends StatefulWidget {
@override
_publicPlacesQuizStartPageState createState() => _publicPlacesQuizStartPageState();
_publicPlacesQuizStartPageState createState() =>
_publicPlacesQuizStartPageState();
}
class _publicPlacesQuizStartPageState extends State<publicPlacesQuizStartPage> {
......@@ -73,14 +74,84 @@ class _publicPlacesQuizStartPageState extends State<publicPlacesQuizStartPage> {
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold(
appBar: AppBar(
title: Text("STracker"),
),
body: ListView(
children: <Widget>[
customcard("Start Quiz", images[0]),
],
),
);
appBar: AppBar(
title: Text("STracker"),
),
body: Column(
children: <Widget>[
Expanded(
flex: 1,
child: ButtonTheme(
minWidth: 800.0,
height: 100.0,
child: RaisedButton(
color: Colors.redAccent,
onPressed: () {},
child: Text(
"Behavioural in Public Places",
style: TextStyle(color: Colors.white, fontSize: 30),
),
),
)),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 5,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/publicPlacesStart.gif",
),
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => getjsonPublicPlaces(),
));
},
child: Text(
"Start Quiz",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -3,12 +3,12 @@ import 'package:flutter/material.dart';
import '../levelsDashboard.dart';
import '../variables.dart';
class publicPlacesResultPage extends StatefulWidget {
int marks;
publicPlacesResultPage({Key key, @required this.marks}) : super(key: key);
@override
_publicPlacesResultPageState createState() => _publicPlacesResultPageState(marks);
_publicPlacesResultPageState createState() =>
_publicPlacesResultPageState(marks);
}
class _publicPlacesResultPageState extends State<publicPlacesResultPage> {
......@@ -27,81 +27,86 @@ class _publicPlacesResultPageState extends State<publicPlacesResultPage> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"Result for Public Places",
appBar: AppBar(
title: Text(
"Result - Behavioural in Public Places",
),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 7,
child: Material(
elevation: 10.0,
child: Container(
width: 300.0,
height: 300.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 300.0,
height: 300.0,
child: ClipRRect(
child: Image(
image:
AssetImage("lib/assets/images/gameover.jpg"),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 3,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/gameover.gif",
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"You Scored $marks marks",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"Continue",
"You Scored $marks marks",
style: TextStyle(
fontSize: 18.0,
fontSize: 30.0,
fontWeight: FontWeight.w900,
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
borderSide: BorderSide(width: 3.0, color: Colors.indigo),
splashColor: Colors.indigoAccent,
)
],
),
)
],
),
);
)),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text(
"Continue",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -5,7 +5,6 @@ import 'package:covidefender/STracker/SocialDistance/socialDistanceResultPage.da
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
class getjsonSocialDistance extends StatelessWidget {
@override
Widget build(BuildContext context) {
......@@ -37,7 +36,8 @@ class quizpageSocialDistance extends StatefulWidget {
quizpageSocialDistance({Key key, @required this.mydata}) : super(key: key);
@override
_quizpageSocialDistanceState createState() => _quizpageSocialDistanceState(mydata);
_quizpageSocialDistanceState createState() =>
_quizpageSocialDistanceState(mydata);
}
class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
......@@ -91,7 +91,7 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
canceltimer = false;
timer = 60;
setState(() {
if (i < 5) {
if (i < 8) {
i++;
} else {
Navigator.of(context).pushReplacement(MaterialPageRoute(
......@@ -108,7 +108,7 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5;
marks = marks + 20;
colortoshow = right;
} else {
colortoshow = wrong;
......@@ -132,15 +132,20 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
hangState = 3;
} else if (x == 4) {
hangState = 4;
} else {
} else if (x == 5) {
hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => socialDistanceResultPage(marks: marks),
));
}
}
Widget choicebutton(String k) {
return Padding(
padding: EdgeInsets.symmetric(
vertical: 10.0,
vertical: 20.0,
horizontal: 20.0,
),
child: MaterialButton(
......@@ -149,15 +154,15 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
mydata[1][i.toString()][k],
style: TextStyle(
color: Colors.white,
fontSize: 16.0,
fontSize: 20.0,
),
maxLines: 1,
),
color: btncolor[k],
splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700],
minWidth: 200.0,
height: 45.0,
minWidth: 500.0,
height: 70.0,
shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
),
......@@ -193,18 +198,18 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
body: Column(
children: <Widget>[
Expanded(
flex: 5,
flex: 4,
child: Material(
elevation: 20.0,
child: Container(
width: 200.0,
height: 150.0,
width: 400.0,
height: 50.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 200.0,
height: 200.0,
width: 400.0,
height: 375.0,
child: ClipRRect(
child: Image(
image: AssetImage(
......@@ -218,14 +223,14 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
),
),
Expanded(
flex: 2,
flex: 1,
child: Container(
padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft,
child: Text(
mydata[0][i.toString()],
style: TextStyle(
fontSize: 16.0,
fontSize: 30.0,
fontWeight: FontWeight.w700,
),
),
......
......@@ -4,10 +4,12 @@ import 'package:flutter/services.dart';
class socialDistanceQuizStartPage extends StatefulWidget {
@override
_socialDistanceQuizStartPageState createState() => _socialDistanceQuizStartPageState();
_socialDistanceQuizStartPageState createState() =>
_socialDistanceQuizStartPageState();
}
class _socialDistanceQuizStartPageState extends State<socialDistanceQuizStartPage> {
class _socialDistanceQuizStartPageState
extends State<socialDistanceQuizStartPage> {
List<String> images = [
"lib/assets/images/startQuiz.png",
];
......@@ -73,14 +75,84 @@ class _socialDistanceQuizStartPageState extends State<socialDistanceQuizStartPag
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold(
appBar: AppBar(
title: Text("STracker"),
),
body: ListView(
children: <Widget>[
customcard("Start Quiz", images[0]),
],
),
);
appBar: AppBar(
title: Text("STracker"),
),
body: Column(
children: <Widget>[
Expanded(
flex: 1,
child: ButtonTheme(
minWidth: 800.0,
height: 100.0,
child: RaisedButton(
color: Colors.redAccent,
onPressed: () {},
child: Text(
"Social Distance",
style: TextStyle(color: Colors.white, fontSize: 30),
),
),
)),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 5,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/socialDistanceStart.gif",
),
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => getjsonSocialDistance(),
));
},
child: Text(
"Start Quiz",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -3,12 +3,12 @@ import 'package:flutter/material.dart';
import '../levelsDashboard.dart';
import '../variables.dart';
class socialDistanceResultPage extends StatefulWidget {
int marks;
socialDistanceResultPage({Key key, @required this.marks}) : super(key: key);
@override
_socialDistanceResultPageState createState() => _socialDistanceResultPageState(marks);
_socialDistanceResultPageState createState() =>
_socialDistanceResultPageState(marks);
}
class _socialDistanceResultPageState extends State<socialDistanceResultPage> {
......@@ -27,81 +27,86 @@ class _socialDistanceResultPageState extends State<socialDistanceResultPage> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"Result for Social Distance",
appBar: AppBar(
title: Text(
"Result - Social Distance",
),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 7,
child: Material(
elevation: 10.0,
child: Container(
width: 300.0,
height: 300.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 300.0,
height: 300.0,
child: ClipRRect(
child: Image(
image:
AssetImage("lib/assets/images/gameover.jpg"),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 3,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/gameover.gif",
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"You Scored $marks marks",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"Continue",
"You Scored $marks marks",
style: TextStyle(
fontSize: 18.0,
fontSize: 30.0,
fontWeight: FontWeight.w900,
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
borderSide: BorderSide(width: 3.0, color: Colors.indigo),
splashColor: Colors.indigoAccent,
)
],
),
)
],
),
);
)),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text(
"Continue",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
import 'dart:async';
import 'dart:convert';
import 'package:covidefender/STracker/SocialDistance/socialDistanceResultPage.dart';
import 'package:covidefender/STracker/Symptoms/symptomsResultPage.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
class getjsonSymptoms extends StatelessWidget {
@override
Widget build(BuildContext context) {
......@@ -92,7 +90,7 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
canceltimer = false;
timer = 60;
setState(() {
if (i < 5) {
if (i < 8) {
i++;
} else {
Navigator.of(context).pushReplacement(MaterialPageRoute(
......@@ -133,15 +131,20 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
hangState = 3;
} else if (x == 4) {
hangState = 4;
} else {
} else if (x == 5) {
hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => symptomsResultPage(marks: marks),
));
}
}
Widget choicebutton(String k) {
return Padding(
padding: EdgeInsets.symmetric(
vertical: 10.0,
vertical: 20.0,
horizontal: 20.0,
),
child: MaterialButton(
......@@ -150,15 +153,15 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
mydata[1][i.toString()][k],
style: TextStyle(
color: Colors.white,
fontSize: 16.0,
fontSize: 20.0,
),
maxLines: 1,
),
color: btncolor[k],
splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700],
minWidth: 200.0,
height: 45.0,
minWidth: 500.0,
height: 70.0,
shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
),
......@@ -194,18 +197,18 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
body: Column(
children: <Widget>[
Expanded(
flex: 5,
flex: 4,
child: Material(
elevation: 20.0,
child: Container(
width: 200.0,
height: 150.0,
width: 400.0,
height: 50.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 200.0,
height: 200.0,
width: 400.0,
height: 375.0,
child: ClipRRect(
child: Image(
image: AssetImage(
......@@ -219,14 +222,14 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
),
),
Expanded(
flex: 2,
flex: 1,
child: Container(
padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft,
child: Text(
mydata[0][i.toString()],
style: TextStyle(
fontSize: 16.0,
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
......
......@@ -74,14 +74,84 @@ class _symptomsQuizStartPageState extends State<symptomsQuizStartPage> {
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold(
appBar: AppBar(
title: Text("STracker"),
),
body: ListView(
children: <Widget>[
customcard("Start Quiz", images[0]),
],
),
);
appBar: AppBar(
title: Text("STracker"),
),
body: Column(
children: <Widget>[
Expanded(
flex: 1,
child: ButtonTheme(
minWidth: 800.0,
height: 100.0,
child: RaisedButton(
color: Colors.redAccent,
onPressed: () {},
child: Text(
"Symptoms",
style: TextStyle(color: Colors.white, fontSize: 30),
),
),
)),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 5,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/symStart2.gif",
),
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => getjsonSymptoms(),
));
},
child: Text(
"Start Quiz",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -3,7 +3,6 @@ import 'package:flutter/material.dart';
import '../levelsDashboard.dart';
import '../variables.dart';
class symptomsResultPage extends StatefulWidget {
int marks;
symptomsResultPage({Key key, @required this.marks}) : super(key: key);
......@@ -27,81 +26,86 @@ class _symptomsResultPageState extends State<symptomsResultPage> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"Result for Social Distance",
appBar: AppBar(
title: Text(
"Result - Symptoms",
),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 7,
child: Material(
elevation: 10.0,
child: Container(
width: 300.0,
height: 300.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 300.0,
height: 300.0,
child: ClipRRect(
child: Image(
image:
AssetImage("lib/assets/images/gameover.jpg"),
),
),
body: Column(
children: <Widget>[
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 3,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/gameover.gif",
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"You Scored $marks marks",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"Continue",
"You Scored $marks marks",
style: TextStyle(
fontSize: 18.0,
fontSize: 30.0,
fontWeight: FontWeight.w900,
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
borderSide: BorderSide(width: 3.0, color: Colors.indigo),
splashColor: Colors.indigoAccent,
)
],
),
)
],
),
);
)),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text(
"Continue",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
import 'package:covidefender/STracker/HandWashing/quizpage.dart';
import 'package:covidefender/STracker/levelsDashboard.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'variables.dart';
class finalOverallResultPage extends StatefulWidget {
String marks;
finalOverallResultPage() : super();
@override
_finalOverallResultPageState createState() => _finalOverallResultPageState();
}
class _finalOverallResultPageState extends State<finalOverallResultPage> {
// int ima;
_finalOverallResultPageState();
@override
void initState() {
setLevel();
super.initState();
}
void setLevel() {
print('marks6');
print(marks6);
if(marks6 == 'Very Low'){
// ima = 100;
print('1');
}else if(marks6 == 'Low'){
// ima = 200;
print('2');
}else if(marks6 == 'Moderate'){
// ima = 300;
print('3');
}else if(marks6 == 'High'){
// ima = 400;
print('4');
}else if(marks6 == 'Very High'){
// ima = 500;
print('5');
}
}
Widget customcard(String type, String image) {
return Padding(
padding: EdgeInsets.all(
20.0,
),
child: InkWell(
onTap: () {
// Navigator.of(context).pushReplacement(MaterialPageRoute(
// builder: (context) => getjson(),
// ));
},
child: Material(
color: Colors.indigoAccent,
elevation: 10.0,
borderRadius: BorderRadius.circular(20.0),
child: Container(
child: Column(
children: <Widget>[
Padding(
padding: EdgeInsets.symmetric(
vertical: 10.0,
),
child: Material(
elevation: 5.0,
borderRadius: BorderRadius.circular(100.0),
child: Container(
height: 100.0,
width: 100.0,
child: ClipOval(
child: Image(
fit: BoxFit.contain,
image: AssetImage(
image,
),
),
),
),
),
),
Center(
child: Text(
type,
style: TextStyle(
fontSize: 24.0,
fontWeight: FontWeight.w700,
),
),
),
],
),
),
),
),
);
}
@override
Widget build(BuildContext context) {
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold(
appBar: AppBar(
title: Text("STracker"),
),
body: Column(
children: <Widget>[
Expanded(
flex: 1,
child: ButtonTheme(
minWidth: 800.0,
height: 100.0,
child: RaisedButton(
color: Colors.redAccent,
onPressed: () {},
child: Text(
"Overall Awareness Level",
style: TextStyle(color: Colors.white, fontSize: 30),
),
),
)),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 8,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/awarenessLevel.gif",
),
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: Text(
"Your Awareness Level - $marks6",
style: TextStyle(color: Colors.red, fontSize: 30),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: Image(
image: AssetImage(
"lib/assets/images/100.png",
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text(
"Registration",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
import 'dart:convert';
import 'package:covidefender/STracker/finalOverallResultsPage.dart';
import 'package:flutter/material.dart';
import 'levelsDashboard.dart';
import 'variables.dart';
import 'package:http/http.dart' as http;
class finalResult extends StatefulWidget {
int marks;
......@@ -12,9 +16,177 @@ class finalResult extends StatefulWidget {
class _finalResultState extends State<finalResult> {
int marks;
int ima1 = 0;
int ima2 = 0;
int ima3 = 0;
int ima4 = 0;
int ima5 = 0;
String handWashingLevel = '';
String maskWearingLevel = '';
String socialDistanceLevel = '';
String publicPlacesLevel = '';
String symptomsLevel = '';
String handWashingLevelData = '';
String maskWearingLevelData = '';
String socialDistanceLevelData = '';
String publicPlacesLevelData = '';
String symptomsLevelData = '';
_finalResultState();
@override
void initState() {
setLevel();
super.initState();
}
void setLevel() {
if ((marks1 >= 0 && (marks1 <= 24))) {
handWashingLevel = 'Very Low';
handWashingLevelData = '0';
ima1 = 100;
} else if ((marks1 >= 25 && (marks1 <= 48))) {
handWashingLevel = 'Low';
handWashingLevelData = '1';
ima1 = 200;
} else if ((marks1 >= 49 && (marks1 <= 72))) {
handWashingLevel = 'Moderate';
handWashingLevelData = '2';
ima1 = 300;
} else if ((marks1 >= 73 && (marks1 <= 96))) {
handWashingLevel = 'High';
handWashingLevelData = '3';
ima1 = 400;
} else if ((marks1 >= 97 && (marks1 <= 120))) {
handWashingLevel = 'Very High';
handWashingLevelData = '4';
ima1 = 500;
}
if ((marks2 >= 0 && (marks2 <= 32))) {
maskWearingLevel = 'Very Low';
maskWearingLevelData = '0';
ima2 = 100;
} else if ((marks2 >= 33 && (marks2 <= 64))) {
maskWearingLevel = 'Low';
maskWearingLevelData = '1';
ima2 = 200;
} else if ((marks2 >= 65 && (marks2 <= 96))) {
maskWearingLevel = 'Moderate';
maskWearingLevelData = '2';
ima2 = 300;
} else if ((marks2 >= 97 && (marks2 <= 128))) {
maskWearingLevel = 'High';
maskWearingLevelData = '3';
ima2 = 400;
} else if ((marks2 >= 129 && (marks2 <= 160))) {
maskWearingLevel = 'Very High';
maskWearingLevelData = '4';
ima2 = 500;
}
if ((marks3 >= 0 && (marks3 <= 32))) {
socialDistanceLevel = 'Very Low';
socialDistanceLevelData = '0';
ima3 = 100;
} else if ((marks3 >= 33 && (marks3 <= 64))) {
socialDistanceLevel = 'Low';
socialDistanceLevelData = '1';
ima3 = 200;
} else if ((marks3 >= 65 && (marks3 <= 96))) {
socialDistanceLevel = 'Moderate';
socialDistanceLevelData = '2';
ima3 = 300;
} else if ((marks3 >= 97 && (marks3 <= 128))) {
socialDistanceLevel = 'High';
socialDistanceLevelData = '3';
ima3 = 400;
} else if ((marks3 >= 129 && (marks3 <= 160))) {
socialDistanceLevel = 'Very High';
socialDistanceLevelData = '4';
ima3 = 500;
}
if ((marks4 >= 0 && (marks4 <= 16))) {
publicPlacesLevel = 'Very Low';
publicPlacesLevelData = '0';
ima4 = 100;
} else if ((marks4 >= 17 && (marks4 <= 32))) {
publicPlacesLevel = 'Low';
publicPlacesLevelData = '1';
ima4 = 200;
} else if ((marks4 >= 33 && (marks4 <= 48))) {
publicPlacesLevel = 'Moderate';
publicPlacesLevelData = '2';
ima4 = 300;
} else if ((marks4 >= 49 && (marks4 <= 64))) {
publicPlacesLevel = 'High';
publicPlacesLevelData = '3';
ima4 = 400;
} else if ((marks4 >= 65 && (marks4 <= 80))) {
publicPlacesLevel = 'Very High';
publicPlacesLevelData = '4';
ima4 = 500;
}
if ((marks5 >= 0 && (marks5 <= 8))) {
symptomsLevel = 'Very Low';
symptomsLevelData = '0';
ima5 = 100;
} else if ((marks5 >= 9 && (marks5 <= 16))) {
symptomsLevel = 'Low';
symptomsLevelData = '1';
ima5 = 200;
} else if ((marks5 >= 17 && (marks5 <= 24))) {
symptomsLevel = 'Moderate';
symptomsLevelData = '2';
ima5 = 300;
} else if ((marks5 >= 25 && (marks5 <= 32))) {
symptomsLevel = 'High';
symptomsLevelData = '3';
ima5 = 400;
} else if ((marks5 >= 33 && (marks5 <= 40))) {
symptomsLevel = 'Very High';
symptomsLevelData = '04';
ima5 = 500;
}
}
Future Getdata(url) async{
http.Response Response = await http.get(url);
return Response.body;
}
Future<void> check() async{
String urls = 'https://strackercovid.herokuapp.com/api/stracker?HandWashing='+handWashingLevelData.toString()+'&MaskWearing='+maskWearingLevelData.toString()+'&ScocialDistence='+socialDistanceLevelData.toString()+'&BehaveInPublicPlaces='+publicPlacesLevelData.toString()+'&Symptoms='+symptomsLevelData.toString();
var Data = await Getdata(urls);
var reText = jsonDecode(Data);
print(reText);
if(reText.toString() == '[0]') {
print("Very Low");
marks6 = 'Very Low';
}
else if(reText.toString() == '[1]') {
print("Low");
marks6 = 'Low';
}
else if(reText.toString() == '[2]') {
print("Moderate");
marks6 = 'Moderate';
}
else if(reText.toString() == '[3]') {
print("High");
marks6 = 'High';
}
else if(reText.toString() == '[4]') {
print("Very High");
marks6 = 'Very High';
}
}
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
......@@ -25,26 +197,35 @@ class _finalResultState extends State<finalResult> {
body: Column(
children: <Widget>[
Expanded(
flex: 20,
child: Material(
elevation: 10.0,
child: Container(
width: 300.0,
width: 800.0,
height: 300.0,
child: Column(
children: <Widget>[
Material(
child: Container(
width: 300.0,
width: 500.0,
height: 300.0,
child: ClipRRect(
child: Image(
image:
AssetImage("lib/assets/images/gameover.jpg"),
),
child: Image.asset(
'lib/assets/images/finalResult.gif',
fit: BoxFit.contain,
width: 600,
height: 600,
),
),
),
SizedBox(
height: 20,
),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima1.png"),
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
......@@ -52,13 +233,20 @@ class _finalResultState extends State<finalResult> {
),
child: Center(
child: Text(
"Hand Washing - $marks1",
"Hand Washing - $marks1 / 120 \n \t \t \t \t \t \t $handWashingLevel",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima2.png"),
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
......@@ -66,13 +254,20 @@ class _finalResultState extends State<finalResult> {
),
child: Center(
child: Text(
"Mask Wearing - $marks2",
"Mask Wearing - $marks2 / 160 \n \t \t \t \t \t \t \t $maskWearingLevel",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima3.png"),
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
......@@ -80,13 +275,20 @@ class _finalResultState extends State<finalResult> {
),
child: Center(
child: Text(
"Social Distance - $marks3",
"Social Distance - $marks3 / 160 \n \t \t \t \t \t \t \t $socialDistanceLevel",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima4.png"),
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
......@@ -94,13 +296,20 @@ class _finalResultState extends State<finalResult> {
),
child: Center(
child: Text(
"Public places - $marks4",
"Public places - $marks4 / 80 \n \t \t \t \t \t $publicPlacesLevel",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima5.png"),
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
......@@ -108,44 +317,43 @@ class _finalResultState extends State<finalResult> {
),
child: Center(
child: Text(
"Symptoms - $marks5",
"Symptoms - $marks5 / 40 \n \t \t \t $publicPlacesLevel",
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
SizedBox(
height: 20,
),
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
print("EEEE");
check();
Navigator.of(context)
.pushReplacement(MaterialPageRoute(
builder: (context) => finalOverallResultPage(),
));
},
child: Text(
"Overall Awareness Level",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 150.0,
),
)
],
)),
),
),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text(
"Continue",
style: TextStyle(
fontSize: 18.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
borderSide: BorderSide(width: 3.0, color: Colors.indigo),
splashColor: Colors.indigoAccent,
)
],
),
)
],
),
);
......
......@@ -72,7 +72,7 @@ class _levelsDashboardState extends State<levelsDashboard> {
Card(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8)),
elevation: 4,
elevation: 10,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
......@@ -85,10 +85,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
);
},
child: Image.asset(
'lib/assets/images/handWashing.png'),
'lib/assets/images/handWashing.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Hand Washing',
style: TextStyle(fontSize: 20.0)),
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
)),
],
)),
Card(
......@@ -108,10 +115,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
);
},
child: Image.asset(
'lib/assets/images/maskWearing.png'),
'lib/assets/images/maskWearing.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Mask Wearing',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
],
)),
Card(
......@@ -131,10 +145,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
);
},
child: Image.asset(
'lib/assets/images/socialDistance.png'),
'lib/assets/images/socialDistance.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Socila Distance',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
],
)),
Card(
......@@ -154,10 +175,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
);
},
child: Image.asset(
'lib/assets/images/publicPlaces.png'),
'lib/assets/images/publicPlaces.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Public Places',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
],
)),
Card(
......@@ -170,18 +198,27 @@ class _levelsDashboardState extends State<levelsDashboard> {
FlatButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => symptomsQuizStartPage()),
);
context,
MaterialPageRoute(
builder: (context) =>
symptomsQuizStartPage()),
);
},
child: Image.asset(
'lib/assets/images/symptoms.png'),
'lib/assets/images/symptoms.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Symptoms',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
],
)),
Card(
Card(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8)),
elevation: 4,
......@@ -191,17 +228,24 @@ class _levelsDashboardState extends State<levelsDashboard> {
FlatButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => finalResult()),
);
context,
MaterialPageRoute(
builder: (context) => finalResult()),
);
},
child: Image.asset(
'lib/assets/images/symptoms.png'),
'lib/assets/images/result.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Final Result',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700))
],
)),
)),
],
),
)
......
......@@ -58,6 +58,21 @@ class _strackerDasboardState extends State<strackerDasboard> {
),
),
Expanded(
flex: 3,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
CircleAvatar(
radius: 100,
backgroundColor: Colors.transparent,
backgroundImage:
AssetImage('lib/assets/images/stracker.PNG'),
),
],
),
),
Expanded(
flex: 9,
child: GridView.count(
mainAxisSpacing: 10,
crossAxisSpacing: 10,
......@@ -76,13 +91,21 @@ class _strackerDasboardState extends State<strackerDasboard> {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => levelsDashboard()),
builder: (context) =>
levelsDashboard()),
);
},
child:
Image.asset('lib/assets/images/play.png'),
child: Image.asset(
'lib/assets/images/play.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Play', style: TextStyle(fontSize: 20.0)),
Text('Play',
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700)),
],
)),
Card(
......@@ -100,10 +123,16 @@ class _strackerDasboardState extends State<strackerDasboard> {
// );
// },
child: Image.asset(
'lib/assets/images/instructions.png'),
'lib/assets/images/instructions.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Instructions',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700))
],
)),
Card(
......@@ -121,10 +150,16 @@ class _strackerDasboardState extends State<strackerDasboard> {
// );
// },
child: Image.asset(
'lib/assets/images/score.png'),
'lib/assets/images/score.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Score Board',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700))
],
)),
Card(
......@@ -142,10 +177,16 @@ class _strackerDasboardState extends State<strackerDasboard> {
// );
// },
child: Image.asset(
'lib/assets/images/awrenessLevel.png'),
'lib/assets/images/awrenessLevel.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
),
Text('Awreness Level',
style: TextStyle(fontSize: 20.0))
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700))
],
)),
],
......
......@@ -4,3 +4,5 @@ int marks2 = 0;
int marks3 = 0;
int marks4 = 0;
int marks5 = 0;
String marks6 = '';
......@@ -4,7 +4,10 @@
"2": "Question 2: What is the best tap to wash your hands on this Covid 19 disaster situation?",
"3": "Question 3: When you come home after visiting public places, is it your duty to clean your hands first?",
"4": "Question 4: You must wash and clean your hands before eating something? Is this a good habit?",
"5": "Question 5: What is good for clean your hands"
"5": "Question 5: What is good for clean your hands?",
"6": "Question 6: Is it good to clean your hands after you visit a supermarket?",
"7": "Question 7: Can the coronavirus disease spread through hands of a person",
"8": "Question 8: How much time is good for wash hands with soap and water"
},
{
"1": {
......@@ -36,6 +39,24 @@
"b": "Filtered water",
"c": "Clean, running water",
"d": "Well water"
},
"6": {
"a": "No need to do always",
"b": "Not applicable",
"c": "Yes. must to do",
"d": "Sometimes"
},
"7": {
"a": "Yes, It has a major posibility",
"b": "Yes, It has a minor posibility",
"c": "No, It can not be hapen",
"d": "No, It is not applicable"
},
"8": {
"a": "At least 05 seconds",
"b": "At least 20 minutes",
"c": "At least 20 seconds",
"d": "At least 10 minutes"
}
},
{
......@@ -43,6 +64,9 @@
"2": "Operate by leg",
"3": "Yes, it is must",
"4": "Yes. must to do",
"5": "Clean, running water"
"5": "Clean, running water",
"6": "Yes. must to do",
"7": "Yes, It has a major posibility",
"8": "At least 20 seconds"
}
]
\ No newline at end of file
[
{
"1": "Question 1: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"2": "Question 2: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"3": "Question 3: ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
"1": "Question 1: Does wearing mask help to reduce the spread of Covid 19?",
"2": "Question 2: Do you wear a mask when you go out in public?",
"3": "Question 3: When choosing a mask how important its comfort and fit ( to your particular face shape )?",
"4": "Question 4: What is the type of mask that you wear usually?",
"5": "Question 5: How important is changing the mask daily in reducing the possibility of transmitting infection to myself and to others?",
"6": "Question 6: Do you have adequate knowledge about how to wear a mask properly?",
"7": "Question 7: Do you cover the nose while wearing the mask?",
"8": "Question 8: How important is it to dispose the used mask properly?"
},
{
"1": {
"a": "Keep my hands beautiful",
"b": "Wash my hands of germs",
"c": "To get smooth feel to hand",
"d": "To get a new look on hand"
"a": "Yes a lot",
"b": "Yes some",
"c": "Not sure",
"d": "No it does nothing"
},
"2": {
"a": "Operate by hand",
"b": "Operate by mouth",
"c": "Operate by nose",
"d": "Operate by leg"
"a": "Yes, sometimes",
"b": "I dont remember",
"c": "Yes, always",
"d": "Never"
},
"3": {
"a": "May be",
"b": "Sometimes",
"c": "Yes, it is must",
"a": "Not important",
"b": "Little important",
"c": "Important",
"d": "Never"
},
"4": {
"a": "Yes. must to do",
"b": "Sometimes",
"c": "No need to do always",
"d": "Not applicable"
"a": "Clothing mask",
"b": "Surgical mask",
"c": "N95 mask",
"d": "Non of this"
},
"5": {
"a": "Tank water",
"b": "Filtered water",
"c": "Clean, running water",
"d": "Well water"
"a": "Very important",
"b": "Important",
"c": "Little important",
"d": "Not important"
},
"6": {
"a": "no, nothing",
"b": "Not sure",
"c": "Yes, some knowledge",
"d": "Yes, very good knowledge"
},
"7": {
"a": "Never",
"b": "Yes, sometimes",
"c": "Yes, always",
"d": "I dont remember"
},
"8": {
"a": "Not important",
"b": "Little important",
"c": "Imporatant",
"d": "Very important"
}
},
{
"1": "Wash my hands of germs",
"2": "Operate by leg",
"3": "Yes, it is must",
"4": "Yes. must to do",
"5": "Clean, running water"
"1": "Yes a lot",
"2": "Yes, always",
"3": "Very important",
"4": "N95 mask",
"5": "Very important",
"6": "Yes, very good knowledge",
"7": "Yes, always",
"8": "Very important"
}
]
\ No newline at end of file
[
{
"1": "Question 1: ppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
"2": "Question 2: lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
"3": "Question 3: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
"1": "Question 1: In recent days have you gone to any crowded places?",
"2": "Question 2: Your level of risk of infection with COVID 19?",
"3": "Question 3: Are you going to meeting your friends/ relatives in this lock down period?",
"4": "Question 4: Do you limit physical contact ( hand shaking) in public places?",
"5": "Question 5: Do you eat or drink in bars and resturents in these days?",
"6": "Question 6: Do you prefer to stay at home ?",
"7": "Question 7: Do you follow the health guidelines when you are in public places?",
"8": "Question 8: How do you buy foods and other goods in this endemic period?"
},
{
"1": {
"a": "Keep my hands beautiful",
"b": "Wash my hands of germs",
"c": "To get smooth feel to hand",
"d": "To get a new look on hand"
"a": "Yes, a lot",
"b": "Yes, but few",
"c": "No",
"d": "I cant remember"
},
"2": {
"a": "Operate by hand",
"b": "Operate by mouth",
"c": "Operate by nose",
"d": "Operate by leg"
"a": "High",
"b": "Moderate",
"c": "Low",
"d": "Very low"
},
"3": {
"a": "May be",
"b": "Sometimes",
"c": "Yes, it is must",
"d": "Never"
"a": "Yes, of course",
"b": "May be",
"c": "Never",
"d": "I dont know"
},
"4": {
"a": "Yes. must to do",
"b": "Sometimes",
"c": "No need to do always",
"d": "Not applicable"
"a": "Yes, sometimes",
"b": "Yes, always",
"c": "Never",
"d": "I cant remember"
},
"5": {
"a": "Tank water",
"b": "Filtered water",
"c": "Clean, running water",
"d": "Well water"
}
"a": "Yes, all the time",
"b": "May be sometimes",
"c": "Never",
"d": "I cant remember"
},
"6": {
"a": "Not applicable",
"b": "Hate it",
"c": "Somewhat ok",
"d": "Yes, love it"
},
"7": {
"a": "Never",
"b": "Yes, sometimes",
"c": "Yes, always",
"d": "I cant remember"
},
"8": {
"a": "By online ordering",
"b": "By visiting to the shop",
"c": "By both methods",
"d": "Non of these methods"
}
},
{
"1": "Wash my hands of germs",
"2": "Operate by leg",
"3": "Yes, it is must",
"4": "Yes. must to do",
"5": "Clean, running water"
"1": "Yes, a lot",
"2": "Very low",
"3": "Never",
"4": "Yes, always",
"5": "Yes, all the time",
"6": "Yes, love it",
"7": "Yes, always",
"8": "By online ordering"
}
]
\ No newline at end of file
[
{
"1": "Question 1: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
"2": "Question 2: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"3": "Question 3: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
"1": "Question 1: Does keeping social distance help to reduce the spread of COVID 19?",
"2": "Question 2: Are you practicing any kind of social distancing when you are at public places?",
"3": "Question 3: What is the ideal distance you have to maintain when you are in a crowded place?",
"4": "Question 4: Do you cover your nose and mouth during coughing or sneezing with the elbow or tissue?",
"5": "Question 5: How does the COVID 19 virus spread?",
"6": "Question 6: Do you listen and follow the guidelines regarding social distancing when you are at a crowded place.",
"7": "Question 7: Do you think lockdown will improve the controlling of COVID 19?",
"8": "Question 8: Your level of knowledge in social distancing?"
},
{
"1": {
"a": "Keep my hands beautiful",
"b": "Wash my hands of germs",
"c": "To get smooth feel to hand",
"d": "To get a new look on hand"
"a": "No it does nothing",
"b": "Not sure",
"c": "Yes, some",
"d": "Yes, a lot"
},
"2": {
"a": "Operate by hand",
"b": "Operate by mouth",
"c": "Operate by nose",
"d": "Operate by leg"
"a": "Yes, sometimes",
"b": "Yes, always",
"c": "Never",
"d": "I cant remember"
},
"3": {
"a": "May be",
"b": "Sometimes",
"c": "Yes, it is must",
"d": "Never"
"a": "0.5 meter distance",
"b": "2 meter distance",
"c": "0.2 meter distance",
"d": "0.02 meter distance"
},
"4": {
"a": "Yes. must to do",
"b": "Sometimes",
"c": "No need to do always",
"a": "Yes, sometimes",
"b": "Never",
"c": "Yes, always",
"d": "Not applicable"
},
"5": {
"a": "Tank water",
"b": "Filtered water",
"c": "Clean, running water",
"d": "Well water"
}
"a": "Air borne",
"b": "Respiratory droplets and personal contact",
"c": "Animal contact",
"d": "No idea"
},
"6": {
"a": "I cant remember",
"b": "Never",
"c": "Yes, sometimes",
"d": "Yes, always"
},
"7": {
"a": "No, It will not",
"b": "Filtered water",
"c": "Yes, absolutely",
"d": "I have no idea"
},
"8": {
"a": "High level",
"b": "Moderate level",
"c": "Low level",
"d": "Very low level"
}
},
{
"1": "Wash my hands of germs",
"2": "Operate by leg",
"3": "Yes, it is must",
"4": "Yes. must to do",
"5": "Clean, running water"
"1": "Yes, a lot",
"2": "Yes, always",
"3": "2 meter distance",
"4": "Yes, always",
"5": "Respiratory droplets and personal contact",
"6": "Yes, always",
"7": "Yes, absolutely",
"8": "High level"
}
]
\ No newline at end of file
[
{
"1": "Question 1: yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
"1": "Question 1: Your knowledge about the symptoms of COVID 19 ?",
"2": "Question 2: mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
"3": "Question 3: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
},
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"6": "Question 6: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"7": "Question 7: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"8": "Question 8: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
},
{
"1": {
"a": "Keep my hands beautiful",
......@@ -37,12 +40,36 @@
"c": "Clean, running water",
"d": "Well water"
}
,
"6": {
"a": "Tank water",
"b": "Filtered water",
"c": "Clean, running water",
"d": "Well water"
}
,
"7": {
"a": "Tank water",
"b": "Filtered water",
"c": "Clean, running water",
"d": "Well water"
}
,
"8": {
"a": "Tank water",
"b": "Filtered water",
"c": "Clean, running water",
"d": "Well water"
}
},
{
"1": "Wash my hands of germs",
"2": "Operate by leg",
"3": "Yes, it is must",
"4": "Yes. must to do",
"5": "Clean, running water"
"5": "Clean, running water",
"6": "Clean, running water",
"7": "Clean, running water",
"8": "Clean, running water"
}
]
\ No newline at end of file
import 'package:covidefender/I_GUIDER/splashIguider.dart';
import 'package:covidefender/STracker/splash.dart';
import 'package:covidefender/EAnalyzer/Loading.dart';
import 'package:covidefender/loginPage.dart';
import 'package:flutter/material.dart';
class HomeScreen extends StatefulWidget {
......@@ -42,11 +43,11 @@ class _HomeScreenState extends State<HomeScreen> {
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
CircleAvatar(
radius: 32,
backgroundImage: NetworkImage(
'https://upload.wikimedia.org/wikipedia/commons/a/a0/Pierre-Person.jpg'),
),
// CircleAvatar(
// radius: 32,
// backgroundImage: NetworkImage(
// 'https://upload.wikimedia.org/wikipedia/commons/a/a0/Pierre-Person.jpg'),
// ),
SizedBox(
width: 16,
),
......@@ -77,13 +78,17 @@ class _HomeScreenState extends State<HomeScreen> {
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
height: size.height * .1,
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage(
'lib/assets/images/man80.png')),
)),
FlatButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => loginPage()),
);
},
child: Image.asset(
'lib/assets/images/man80.png'),
),
Text('My Profile',
style: TextStyle(fontSize: 20.0))
],
......
import 'package:covidefender/mainRegisterPage.dart';
import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
class loginPage extends StatefulWidget {
@override
_loginPageState createState() => _loginPageState();
}
class _loginPageState extends State<loginPage> {
String hotelName;
String district;
int nearToDistrict;
int noOfPeople;
String date;
int ima = 0;
getHotelName(hotelName) {
this.hotelName = hotelName;
}
getDistrict(district) {
this.district = district;
}
getNearDistrict(nearToDistrict) {
this.nearToDistrict = nearToDistrict;
}
getPeople(noOfPeople) {
this.noOfPeople = noOfPeople;
}
getDate(date) {
this.date = date;
}
final GlobalKey<FormState> _formKey = GlobalKey<FormState>();
Widget _buildHotelName() {
return TextFormField(
decoration: InputDecoration(
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.indigo[900]),
borderRadius: BorderRadius.all(Radius.circular(20))),
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.green),
borderRadius: BorderRadius.all(Radius.circular(20))),
prefixIcon: Icon(Icons.home),
hintText: "Enter Username",
labelText: 'Username'),
// ignore: missing_return
validator: (String value) {},
);
}
Widget _buildDistrict() {
return TextFormField(
decoration: InputDecoration(
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.indigo[900]),
borderRadius: BorderRadius.all(Radius.circular(20))),
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.green),
borderRadius: BorderRadius.all(Radius.circular(20))),
prefixIcon: Icon(Icons.location_on),
hintText: "Enter Password",
labelText: 'Password'),
// ignore: missing_return
validator: (String value) {},
// onSaved: (String value){
// _fName = value;
// },
onChanged: (String district) {
getDistrict(district);
},
);
}
//---------------------------------------------Near To District-----------------------------------------------------
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backwardsCompatibility: false,
backgroundColor: Colors.blueAccent,
title: Text("CoviDefender"),
),
body: Container(
margin: EdgeInsets.all(24),
child: Form(
key: _formKey,
child: ListView(
scrollDirection: Axis.vertical,
//mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
SizedBox(height: 100),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"CoviDefender",
style: TextStyle(
fontSize: 50.0,
fontWeight: FontWeight.w900,
),
),
)),
CircleAvatar(
radius: 180.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/corona.gif"),
),
),
SizedBox(height: 100),
_buildHotelName(),
SizedBox(height: 10),
_buildDistrict(),
SizedBox(height: 50),
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
// Navigator.of(context).pushReplacement(MaterialPageRoute(
// builder: (context) => finalOverallResultPage(),
// ));
},
child: Text(
"Login",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 150.0,
),
),
SizedBox(height: 50),
RaisedButton(
color: Colors.green,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => mainRegisterPage(),
));
},
child: Text(
"Register",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 150.0,
),
)
],
),
),
),
);
}
}
import 'package:covidefender/STracker/HandWashing/quizpage.dart';
import 'package:covidefender/STracker/splash.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
class mainRegisterPage extends StatefulWidget {
@override
_mainRegisterPageState createState() => _mainRegisterPageState();
}
class _mainRegisterPageState extends State<mainRegisterPage> {
List<String> images = [
"lib/assets/images/startQuiz.png",
];
Widget customcard(String type, String image) {
return Padding(
padding: EdgeInsets.all(
20.0,
),
child: InkWell(
onTap: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => getjson(),
));
},
child: Material(
color: Colors.indigoAccent,
elevation: 10.0,
borderRadius: BorderRadius.circular(20.0),
child: Container(
child: Column(
children: <Widget>[
Padding(
padding: EdgeInsets.symmetric(
vertical: 10.0,
),
child: Material(
elevation: 5.0,
borderRadius: BorderRadius.circular(100.0),
child: Container(
height: 100.0,
width: 100.0,
child: ClipOval(
child: Image(
fit: BoxFit.contain,
image: AssetImage(
image,
),
),
),
),
),
),
Center(
child: Text(
type,
style: TextStyle(
fontSize: 24.0,
fontWeight: FontWeight.w700,
),
),
),
],
),
),
),
),
);
}
@override
Widget build(BuildContext context) {
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold(
appBar: AppBar(
title: Text("CoviDefender"),
),
body: Column(
children: <Widget>[
Expanded(
flex: 1,
child: ButtonTheme(
minWidth: 800.0,
height: 100.0,
child: RaisedButton(
color: Colors.redAccent,
onPressed: () {},
child: Text(
"Registration",
style: TextStyle(color: Colors.white, fontSize: 30),
),
),
)),
Expanded(
flex: 2,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[],
),
),
Expanded(
flex: 5,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.white,
onPressed: () {},
child: ClipRRect(
child: Image(
image: AssetImage(
"lib/assets/images/register.gif",
),
),
),
padding: EdgeInsets.symmetric(
vertical: 10.0,
horizontal: 25.0,
),
)
],
),
),
Padding(
padding: EdgeInsets.symmetric(
vertical: 5.0,
horizontal: 15.0,
),
child: Center(
child: Text(
"You have to answer a quiz before register \n Press Start Quiz to navigate.",
style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w900,
),
),
)),
Expanded(
flex: 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
color: Colors.blueAccent,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20.0)),
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => splashscreen(),
));
},
child: Text(
"Start Quiz",
style: TextStyle(
fontSize: 30.0,
),
),
padding: EdgeInsets.symmetric(
vertical: 20.0,
horizontal: 200.0,
),
)
],
),
)
],
));
}
}
......@@ -108,6 +108,28 @@ flutter:
- lib/assets/images/4.png
- lib/assets/images/5.png
- lib/assets/images/6.png
- lib/assets/images/100.png
- lib/assets/images/200.png
- lib/assets/images/300.png
- lib/assets/images/400.png
- lib/assets/images/500.png
- lib/assets/images/start.gif
- lib/assets/images/handWashingStart.gif
- lib/assets/images/maskWearingStart.gif
- lib/assets/images/publicPlacesStart.gif
- lib/assets/images/socialDistanceStart.gif
- lib/assets/images/symStart1.gif
- lib/assets/images/symStart2.gif
- lib/assets/images/symStart3.gif
- lib/assets/images/symStart4.gif
- lib/assets/images/gameover.gif
- lib/assets/images/finalResult.gif
- lib/assets/images/awarenessLevel.gif
- lib/assets/images/login.gif
- lib/assets/images/register.gif
- lib/assets/images/corona.gif
- lib/assets/images/quizImage.gif
- lib/assets/images/result.png
- lib/assets/images/hero.gif
- lib/assets/images/map80.png
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment