Commit 4aac3c3f authored by indika N kumara's avatar indika N kumara

Merge branch 'dev_release' into 'develop_1'

Dev release

See merge request !25
parents e9ec8e92 96e3066a
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
...@@ -35,7 +35,17 @@ ...@@ -35,7 +35,17 @@
<action android:name="android.intent.action.MAIN"/> <action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter> </intent-filter>
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity> </activity>
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>
</receiver>
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" />
<!-- Don't delete the meta-data below. <!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data <meta-data
......
import 'package:covidefender/pages/heart_rate/heart_rate_screen.dart'; import 'package:covidefender/pages/heart_rate/heart_rate_screen.dart';
import 'package:covidefender/pages/mask_detect/invoker.dart'; import 'package:covidefender/pages/mask_detect/invoker.dart';
import 'package:covidefender/pages/notificator/ui/MainNotificationUI.dart';
import 'package:covidefender/pages/notificator/ui/notificator.dart';
import 'package:covidefender/pages/self_carer/sc_main_screen.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
class I_guider extends StatelessWidget { class I_guider extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final mesure = MediaQuery.of(context);
return Scaffold( return Scaffold(
backgroundColor: Colors.grey[200], backgroundColor: Colors.white,
appBar: AppBar( appBar: AppBar(
centerTitle: true,
title: Text('I-Guider'), title: Text('I-Guider'),
// elevation: 0, // elevation: 0,
), ),
body: Column( body: SingleChildScrollView(
children: [ child: Column(
Row( children: [
children: [ Row(
Expanded( children: [
child: Container( Expanded(
decoration: BoxDecoration( child: Container(
image: DecorationImage( height: mesure.size.height/3,
image: AssetImage('lib/assets/images/hero.gif'), decoration: BoxDecoration(
fit: BoxFit.cover)), image: DecorationImage(
height: 300, image: AssetImage('lib/assets/images/hero.gif'),
fit: BoxFit.cover)),
),
), ),
), ],
], ),
), //------------------------------------
//------------------------------------
SizedBox( SizedBox(
height: 50, height: 50,
), ),
Row( Row(
children: [ children: [
Expanded( Expanded(
child: Padding( child: Padding(
padding: const EdgeInsets.fromLTRB(8, 0, 8, 0), padding: const EdgeInsets.fromLTRB(8, 0, 8, 0),
child: ButtonTheme( child: ButtonTheme(
minWidth: 100.0, splashColor: Colors.blue,
height: 150.0, minWidth: 100.0,
child: RaisedButton.icon( height: 150.0,
icon: Icon( child: RaisedButton.icon(
Icons.bluetooth_audio_rounded, icon: Column(
size: 40, children: [
color: Colors.white, Icon(
Icons.notifications,
size: 40,
color: Colors.white,
),
SizedBox(height: 20),
Text("Notificator",style:TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white
) ,)
],
),
label: Text('',
style: TextStyle(fontWeight: FontWeight.bold)),
onPressed: () {
Navigator.push(context, MaterialPageRoute(builder: (context) => MainNotificationUI() ));
},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
color: Colors.blue[200],
), ),
label: Text('',
style: TextStyle(fontWeight: FontWeight.bold)),
onPressed: () {},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
color: Colors.blue[200],
), ),
), ),
), ),
), Expanded(
Expanded( child: Padding(
child: Padding( padding: const EdgeInsets.fromLTRB(8, 0, 8, 0),
padding: const EdgeInsets.fromLTRB(8, 0, 8, 0), child: ButtonTheme(
child: ButtonTheme( minWidth: 100.0,
minWidth: 100.0, height: 150.0,
height: 150.0, child: RaisedButton.icon(
child: RaisedButton.icon( color: Colors.greenAccent,
color: Colors.greenAccent, icon: Column(
icon: Icon( children: [
Icons.face_unlock_sharp, Icon(
size: 60, Icons.face_unlock_sharp,
color: Colors.white, size: 60,
), color: Colors.white,
label: Text( ),
'', SizedBox(height: 20),
style: TextStyle(fontWeight: FontWeight.bold), Text("Mask Detector",style:TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white
) ,)
],
),
label: Text(
'',
style: TextStyle(fontWeight: FontWeight.bold),
),
onPressed: () {
print('face mask detection');
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => invoker())
);
// Navigator.pushNamed(context, '/invoker');
},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
), ),
onPressed: () {
print('face mask detection');
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => invoker())
);
// Navigator.pushNamed(context, '/invoker');
},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
), ),
), ),
), )
) ],
], ),
), SizedBox(height: 30),
SizedBox(height: 30), Row(
Row( children: [
children: [ Expanded(
Expanded( child: Padding(
child: Padding( padding: const EdgeInsets.fromLTRB(8, 0, 8, 0),
padding: const EdgeInsets.fromLTRB(8, 0, 8, 0), child: ButtonTheme(
child: ButtonTheme( minWidth: 100.0,
minWidth: 100.0, height: 150.0,
height: 150.0, child: RaisedButton.icon(
child: RaisedButton.icon( icon: Column(
icon: Icon( children: [
Icons.view_stream_outlined, Icon(
size: 40, Icons.view_stream_outlined,
color: Colors.white, size: 40,
color: Colors.white,
),
SizedBox(height: 20),
Text("Heart Monitor",style:TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white
) ,)
],
),
label: Text('',
style: TextStyle(fontWeight: FontWeight.bold)),
onPressed: () {
// action when button is pressed route to heart rate measurer
Navigator.push(context, MaterialPageRoute(builder: (context) => HeartRateScreen() ));
},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
color: Colors.redAccent,
), ),
label: Text('',
style: TextStyle(fontWeight: FontWeight.bold)),
onPressed: () {
// action when button is pressed route to heart rate measurer
Navigator.push(context, MaterialPageRoute(builder: (context) => HeartRateScreen() ));
},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
color: Colors.redAccent,
), ),
), ),
), ),
), Expanded(
Expanded( child: Padding(
child: Padding( padding: const EdgeInsets.fromLTRB(8, 0, 8, 0),
padding: const EdgeInsets.fromLTRB(8, 0, 8, 0), child: ButtonTheme(
child: ButtonTheme( minWidth: 100.0,
minWidth: 100.0, height: 150.0,
height: 150.0, child: RaisedButton.icon(
child: RaisedButton.icon( color: Colors.purple[200],
color: Colors.purple[200], icon: Column(
icon: Icon( children: [
Icons.online_prediction_sharp, Icon(
size: 60, Icons.online_prediction_sharp,
color: Colors.white, size: 60,
color: Colors.white,
),
SizedBox(height: 20),
Text("Self-Carer",style:TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white
) ,)
],
),
label: Text(
'',
style: TextStyle(fontWeight: FontWeight.bold),
),
onPressed: () {
Navigator.push(context, MaterialPageRoute(builder: (context)=> SC_main()));
},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
), ),
label: Text(
'',
style: TextStyle(fontWeight: FontWeight.bold),
),
onPressed: () {},
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10)),
), ),
), ),
), )
) ],
], ),
), ],
], ),
), ),
); );
} }
......
...@@ -73,14 +73,84 @@ class _homepageState extends State<homepage> { ...@@ -73,14 +73,84 @@ class _homepageState extends State<homepage> {
SystemChrome.setPreferredOrientations( SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]); [DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text("STracker"), title: Text("STracker"),
), ),
body: ListView( body: Column(
children: <Widget>[ children: <Widget>[
customcard("Start Quiz", images[0]), 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> { ...@@ -90,7 +90,7 @@ class _quizpageState extends State<quizpage> {
canceltimer = false; canceltimer = false;
timer = 60; timer = 60;
setState(() { setState(() {
if (i < 5) { if (i < 8) {
i++; i++;
} else { } else {
Navigator.of(context).pushReplacement(MaterialPageRoute( Navigator.of(context).pushReplacement(MaterialPageRoute(
...@@ -107,7 +107,7 @@ class _quizpageState extends State<quizpage> { ...@@ -107,7 +107,7 @@ class _quizpageState extends State<quizpage> {
void checkanswer(String k) { void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) { if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5; marks = marks + 15;
colortoshow = right; colortoshow = right;
} else { } else {
colortoshow = wrong; colortoshow = wrong;
...@@ -131,15 +131,20 @@ class _quizpageState extends State<quizpage> { ...@@ -131,15 +131,20 @@ class _quizpageState extends State<quizpage> {
hangState = 3; hangState = 3;
} else if (x == 4) { } else if (x == 4) {
hangState = 4; hangState = 4;
} else { } else if (x == 5) {
hangState = 5; hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => resultpage(marks: marks),
));
} }
} }
Widget choicebutton(String k) { Widget choicebutton(String k) {
return Padding( return Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 10.0, vertical: 20.0,
horizontal: 20.0, horizontal: 20.0,
), ),
child: MaterialButton( child: MaterialButton(
...@@ -148,15 +153,15 @@ class _quizpageState extends State<quizpage> { ...@@ -148,15 +153,15 @@ class _quizpageState extends State<quizpage> {
mydata[1][i.toString()][k], mydata[1][i.toString()][k],
style: TextStyle( style: TextStyle(
color: Colors.white, color: Colors.white,
fontSize: 16.0, fontSize: 20.0,
), ),
maxLines: 1, maxLines: 1,
), ),
color: btncolor[k], color: btncolor[k],
splashColor: Colors.indigo[700], splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700], highlightColor: Colors.indigo[700],
minWidth: 200.0, minWidth: 500.0,
height: 45.0, height: 70.0,
shape: shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)), RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
), ),
...@@ -191,19 +196,22 @@ class _quizpageState extends State<quizpage> { ...@@ -191,19 +196,22 @@ class _quizpageState extends State<quizpage> {
child: Scaffold( child: Scaffold(
body: Column( body: Column(
children: <Widget>[ children: <Widget>[
SizedBox(
height: 20,
),
Expanded( Expanded(
flex: 5, flex: 4,
child: Material( child: Material(
elevation: 20.0, elevation: 20.0,
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 150.0, height: 50.0,
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Material( Material(
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 200.0, height: 375.0,
child: ClipRRect( child: ClipRRect(
child: Image( child: Image(
image: AssetImage( image: AssetImage(
...@@ -216,15 +224,18 @@ class _quizpageState extends State<quizpage> { ...@@ -216,15 +224,18 @@ class _quizpageState extends State<quizpage> {
)), )),
), ),
), ),
SizedBox(
height: 20,
),
Expanded( Expanded(
flex: 2, flex: 1,
child: Container( child: Container(
padding: EdgeInsets.all(15.0), padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft, alignment: Alignment.bottomLeft,
child: Text( child: Text(
mydata[0][i.toString()], mydata[0][i.toString()],
style: TextStyle( style: TextStyle(
fontSize: 16.0, fontSize: 30.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
...@@ -234,7 +245,7 @@ class _quizpageState extends State<quizpage> { ...@@ -234,7 +245,7 @@ class _quizpageState extends State<quizpage> {
), ),
), ),
Expanded( Expanded(
flex: 6, flex: 5,
child: Container( child: Container(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
......
...@@ -27,81 +27,86 @@ class _resultpageState extends State<resultpage> { ...@@ -27,81 +27,86 @@ class _resultpageState extends State<resultpage> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text( title: Text(
"Result", "Result - Hand Washing",
),
), ),
), body: Column(
body: Column( children: <Widget>[
children: <Widget>[ Expanded(
Expanded( flex: 2,
flex: 7, child: Row(
child: Material( mainAxisAlignment: MainAxisAlignment.center,
elevation: 10.0, children: <Widget>[],
child: Container( ),
width: 300.0, ),
height: 300.0, Expanded(
child: Column( flex: 3,
children: <Widget>[ child: Row(
Material( mainAxisAlignment: MainAxisAlignment.center,
child: Container( children: <Widget>[
width: 300.0, RaisedButton(
height: 300.0, color: Colors.white,
child: ClipRRect( onPressed: () {},
child: Image( child: ClipRRect(
image: child: Image(
AssetImage("lib/assets/images/gameover.jpg"), image: AssetImage(
), "lib/assets/images/gameover.gif",
),
), ),
), ),
Padding( ),
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 10.0,
horizontal: 15.0, horizontal: 25.0,
), ),
child: Center( )
child: Text( ],
"You Scored $marks marks", ),
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
))
],
)),
), ),
), Padding(
Expanded( padding: EdgeInsets.symmetric(
flex: 4, vertical: 5.0,
child: Row( horizontal: 15.0,
mainAxisAlignment: MainAxisAlignment.center, ),
children: <Widget>[ child: Center(
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text( child: Text(
"Continue", "You Scored $marks marks",
style: TextStyle( style: TextStyle(
fontSize: 18.0, fontSize: 30.0,
fontWeight: FontWeight.w900,
), ),
), ),
padding: EdgeInsets.symmetric( )),
vertical: 10.0, Expanded(
horizontal: 25.0, flex: 4,
), child: Row(
borderSide: BorderSide(width: 3.0, color: Colors.indigo), mainAxisAlignment: MainAxisAlignment.center,
splashColor: Colors.indigoAccent, 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> { ...@@ -91,7 +91,7 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
canceltimer = false; canceltimer = false;
timer = 60; timer = 60;
setState(() { setState(() {
if (i < 5) { if (i < 8) {
i++; i++;
} else { } else {
Navigator.of(context).pushReplacement(MaterialPageRoute( Navigator.of(context).pushReplacement(MaterialPageRoute(
...@@ -108,7 +108,7 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> { ...@@ -108,7 +108,7 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
void checkanswer(String k) { void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) { if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5; marks = marks + 20;
colortoshow = right; colortoshow = right;
} else { } else {
colortoshow = wrong; colortoshow = wrong;
...@@ -132,15 +132,20 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> { ...@@ -132,15 +132,20 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
hangState = 3; hangState = 3;
} else if (x == 4) { } else if (x == 4) {
hangState = 4; hangState = 4;
} else { } else if (x == 5) {
hangState = 5; hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => maskWearingResultPage(marks: marks),
));
} }
} }
Widget choicebutton(String k) { Widget choicebutton(String k) {
return Padding( return Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 10.0, vertical: 20.0,
horizontal: 20.0, horizontal: 20.0,
), ),
child: MaterialButton( child: MaterialButton(
...@@ -149,15 +154,15 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> { ...@@ -149,15 +154,15 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
mydata[1][i.toString()][k], mydata[1][i.toString()][k],
style: TextStyle( style: TextStyle(
color: Colors.white, color: Colors.white,
fontSize: 16.0, fontSize: 20.0,
), ),
maxLines: 1, maxLines: 1,
), ),
color: btncolor[k], color: btncolor[k],
splashColor: Colors.indigo[700], splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700], highlightColor: Colors.indigo[700],
minWidth: 200.0, minWidth: 500.0,
height: 45.0, height: 70.0,
shape: shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)), RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
), ),
...@@ -193,18 +198,18 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> { ...@@ -193,18 +198,18 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
body: Column( body: Column(
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
flex: 5, flex: 4,
child: Material( child: Material(
elevation: 20.0, elevation: 20.0,
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 150.0, height: 50.0,
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Material( Material(
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 200.0, height: 375.0,
child: ClipRRect( child: ClipRRect(
child: Image( child: Image(
image: AssetImage( image: AssetImage(
...@@ -218,14 +223,14 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> { ...@@ -218,14 +223,14 @@ class _quizpageMaskWearingState extends State<quizpageMaskWearing> {
), ),
), ),
Expanded( Expanded(
flex: 2, flex: 1,
child: Container( child: Container(
padding: EdgeInsets.all(15.0), padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft, alignment: Alignment.bottomLeft,
child: Text( child: Text(
mydata[0][i.toString()], mydata[0][i.toString()],
style: TextStyle( style: TextStyle(
fontSize: 16.0, fontSize: 30.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
......
...@@ -4,7 +4,8 @@ import 'package:flutter/services.dart'; ...@@ -4,7 +4,8 @@ import 'package:flutter/services.dart';
class maskWearingQuizStartPage extends StatefulWidget { class maskWearingQuizStartPage extends StatefulWidget {
@override @override
_maskWearingQuizStartPageState createState() => _maskWearingQuizStartPageState(); _maskWearingQuizStartPageState createState() =>
_maskWearingQuizStartPageState();
} }
class _maskWearingQuizStartPageState extends State<maskWearingQuizStartPage> { class _maskWearingQuizStartPageState extends State<maskWearingQuizStartPage> {
...@@ -73,14 +74,84 @@ class _maskWearingQuizStartPageState extends State<maskWearingQuizStartPage> { ...@@ -73,14 +74,84 @@ class _maskWearingQuizStartPageState extends State<maskWearingQuizStartPage> {
SystemChrome.setPreferredOrientations( SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]); [DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text("STracker"), title: Text("STracker"),
), ),
body: ListView( body: Column(
children: <Widget>[ children: <Widget>[
customcard("Start Quiz", images[0]), 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> { ...@@ -27,81 +27,86 @@ class _maskWearingResultPageState extends State<maskWearingResultPage> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text( title: Text(
"Result for Mask Wearing", "Result - Mask Wearing",
),
), ),
), body: Column(
body: Column( children: <Widget>[
children: <Widget>[ Expanded(
Expanded( flex: 2,
flex: 7, child: Row(
child: Material( mainAxisAlignment: MainAxisAlignment.center,
elevation: 10.0, children: <Widget>[],
child: Container( ),
width: 300.0, ),
height: 300.0, Expanded(
child: Column( flex: 3,
children: <Widget>[ child: Row(
Material( mainAxisAlignment: MainAxisAlignment.center,
child: Container( children: <Widget>[
width: 300.0, RaisedButton(
height: 300.0, color: Colors.white,
child: ClipRRect( onPressed: () {},
child: Image( child: ClipRRect(
image: child: Image(
AssetImage("lib/assets/images/gameover.jpg"), image: AssetImage(
), "lib/assets/images/gameover.gif",
),
), ),
), ),
Padding( ),
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 10.0,
horizontal: 15.0, horizontal: 25.0,
), ),
child: Center( )
child: Text( ],
"You Scored $marks marks", ),
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
), ),
), Padding(
Expanded( padding: EdgeInsets.symmetric(
flex: 4, vertical: 5.0,
child: Row( horizontal: 15.0,
mainAxisAlignment: MainAxisAlignment.center, ),
children: <Widget>[ child: Center(
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text( child: Text(
"Continue", "You Scored $marks marks",
style: TextStyle( style: TextStyle(
fontSize: 18.0, fontSize: 30.0,
fontWeight: FontWeight.w900,
), ),
), ),
padding: EdgeInsets.symmetric( )),
vertical: 10.0, Expanded(
horizontal: 25.0, flex: 4,
), child: Row(
borderSide: BorderSide(width: 3.0, color: Colors.indigo), mainAxisAlignment: MainAxisAlignment.center,
splashColor: Colors.indigoAccent, 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> { ...@@ -91,7 +91,7 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
canceltimer = false; canceltimer = false;
timer = 60; timer = 60;
setState(() { setState(() {
if (i < 5) { if (i < 8) {
i++; i++;
} else { } else {
Navigator.of(context).pushReplacement(MaterialPageRoute( Navigator.of(context).pushReplacement(MaterialPageRoute(
...@@ -108,7 +108,7 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> { ...@@ -108,7 +108,7 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
void checkanswer(String k) { void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) { if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5; marks = marks + 10;
colortoshow = right; colortoshow = right;
} else { } else {
colortoshow = wrong; colortoshow = wrong;
...@@ -132,15 +132,20 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> { ...@@ -132,15 +132,20 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
hangState = 3; hangState = 3;
} else if (x == 4) { } else if (x == 4) {
hangState = 4; hangState = 4;
} else { } else if (x == 5) {
hangState = 5; hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => publicPlacesResultPage(marks: marks),
));
} }
} }
Widget choicebutton(String k) { Widget choicebutton(String k) {
return Padding( return Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 10.0, vertical: 20.0,
horizontal: 20.0, horizontal: 20.0,
), ),
child: MaterialButton( child: MaterialButton(
...@@ -149,15 +154,15 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> { ...@@ -149,15 +154,15 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
mydata[1][i.toString()][k], mydata[1][i.toString()][k],
style: TextStyle( style: TextStyle(
color: Colors.white, color: Colors.white,
fontSize: 16.0, fontSize: 20.0,
), ),
maxLines: 1, maxLines: 1,
), ),
color: btncolor[k], color: btncolor[k],
splashColor: Colors.indigo[700], splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700], highlightColor: Colors.indigo[700],
minWidth: 200.0, minWidth: 500.0,
height: 45.0, height: 70.0,
shape: shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)), RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
), ),
...@@ -193,18 +198,18 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> { ...@@ -193,18 +198,18 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
body: Column( body: Column(
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
flex: 5, flex: 4,
child: Material( child: Material(
elevation: 20.0, elevation: 20.0,
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 150.0, height: 50.0,
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Material( Material(
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 200.0, height: 375.0,
child: ClipRRect( child: ClipRRect(
child: Image( child: Image(
image: AssetImage( image: AssetImage(
...@@ -218,14 +223,14 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> { ...@@ -218,14 +223,14 @@ class _quizpagePublicPlacesState extends State<quizpagePublicPlaces> {
), ),
), ),
Expanded( Expanded(
flex: 2, flex: 1,
child: Container( child: Container(
padding: EdgeInsets.all(15.0), padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft, alignment: Alignment.bottomLeft,
child: Text( child: Text(
mydata[0][i.toString()], mydata[0][i.toString()],
style: TextStyle( style: TextStyle(
fontSize: 16.0, fontSize: 30.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
......
...@@ -4,7 +4,8 @@ import 'package:flutter/services.dart'; ...@@ -4,7 +4,8 @@ import 'package:flutter/services.dart';
class publicPlacesQuizStartPage extends StatefulWidget { class publicPlacesQuizStartPage extends StatefulWidget {
@override @override
_publicPlacesQuizStartPageState createState() => _publicPlacesQuizStartPageState(); _publicPlacesQuizStartPageState createState() =>
_publicPlacesQuizStartPageState();
} }
class _publicPlacesQuizStartPageState extends State<publicPlacesQuizStartPage> { class _publicPlacesQuizStartPageState extends State<publicPlacesQuizStartPage> {
...@@ -73,14 +74,84 @@ class _publicPlacesQuizStartPageState extends State<publicPlacesQuizStartPage> { ...@@ -73,14 +74,84 @@ class _publicPlacesQuizStartPageState extends State<publicPlacesQuizStartPage> {
SystemChrome.setPreferredOrientations( SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]); [DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text("STracker"), title: Text("STracker"),
), ),
body: ListView( body: Column(
children: <Widget>[ children: <Widget>[
customcard("Start Quiz", images[0]), 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'; ...@@ -3,12 +3,12 @@ import 'package:flutter/material.dart';
import '../levelsDashboard.dart'; import '../levelsDashboard.dart';
import '../variables.dart'; import '../variables.dart';
class publicPlacesResultPage extends StatefulWidget { class publicPlacesResultPage extends StatefulWidget {
int marks; int marks;
publicPlacesResultPage({Key key, @required this.marks}) : super(key: key); publicPlacesResultPage({Key key, @required this.marks}) : super(key: key);
@override @override
_publicPlacesResultPageState createState() => _publicPlacesResultPageState(marks); _publicPlacesResultPageState createState() =>
_publicPlacesResultPageState(marks);
} }
class _publicPlacesResultPageState extends State<publicPlacesResultPage> { class _publicPlacesResultPageState extends State<publicPlacesResultPage> {
...@@ -27,81 +27,86 @@ class _publicPlacesResultPageState extends State<publicPlacesResultPage> { ...@@ -27,81 +27,86 @@ class _publicPlacesResultPageState extends State<publicPlacesResultPage> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text( title: Text(
"Result for Public Places", "Result - Behavioural in Public Places",
),
), ),
), body: Column(
body: Column( children: <Widget>[
children: <Widget>[ Expanded(
Expanded( flex: 2,
flex: 7, child: Row(
child: Material( mainAxisAlignment: MainAxisAlignment.center,
elevation: 10.0, children: <Widget>[],
child: Container( ),
width: 300.0, ),
height: 300.0, Expanded(
child: Column( flex: 3,
children: <Widget>[ child: Row(
Material( mainAxisAlignment: MainAxisAlignment.center,
child: Container( children: <Widget>[
width: 300.0, RaisedButton(
height: 300.0, color: Colors.white,
child: ClipRRect( onPressed: () {},
child: Image( child: ClipRRect(
image: child: Image(
AssetImage("lib/assets/images/gameover.jpg"), image: AssetImage(
), "lib/assets/images/gameover.gif",
),
), ),
), ),
Padding( ),
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 10.0,
horizontal: 15.0, horizontal: 25.0,
), ),
child: Center( )
child: Text( ],
"You Scored $marks marks", ),
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
), ),
), Padding(
Expanded( padding: EdgeInsets.symmetric(
flex: 4, vertical: 5.0,
child: Row( horizontal: 15.0,
mainAxisAlignment: MainAxisAlignment.center, ),
children: <Widget>[ child: Center(
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text( child: Text(
"Continue", "You Scored $marks marks",
style: TextStyle( style: TextStyle(
fontSize: 18.0, fontSize: 30.0,
fontWeight: FontWeight.w900,
), ),
), ),
padding: EdgeInsets.symmetric( )),
vertical: 10.0, Expanded(
horizontal: 25.0, flex: 4,
), child: Row(
borderSide: BorderSide(width: 3.0, color: Colors.indigo), mainAxisAlignment: MainAxisAlignment.center,
splashColor: Colors.indigoAccent, 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 ...@@ -5,7 +5,6 @@ import 'package:covidefender/STracker/SocialDistance/socialDistanceResultPage.da
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
class getjsonSocialDistance extends StatelessWidget { class getjsonSocialDistance extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
...@@ -37,7 +36,8 @@ class quizpageSocialDistance extends StatefulWidget { ...@@ -37,7 +36,8 @@ class quizpageSocialDistance extends StatefulWidget {
quizpageSocialDistance({Key key, @required this.mydata}) : super(key: key); quizpageSocialDistance({Key key, @required this.mydata}) : super(key: key);
@override @override
_quizpageSocialDistanceState createState() => _quizpageSocialDistanceState(mydata); _quizpageSocialDistanceState createState() =>
_quizpageSocialDistanceState(mydata);
} }
class _quizpageSocialDistanceState extends State<quizpageSocialDistance> { class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
...@@ -91,7 +91,7 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> { ...@@ -91,7 +91,7 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
canceltimer = false; canceltimer = false;
timer = 60; timer = 60;
setState(() { setState(() {
if (i < 5) { if (i < 8) {
i++; i++;
} else { } else {
Navigator.of(context).pushReplacement(MaterialPageRoute( Navigator.of(context).pushReplacement(MaterialPageRoute(
...@@ -108,7 +108,7 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> { ...@@ -108,7 +108,7 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
void checkanswer(String k) { void checkanswer(String k) {
if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) { if (mydata[2][i.toString()] == mydata[1][i.toString()][k]) {
marks = marks + 5; marks = marks + 20;
colortoshow = right; colortoshow = right;
} else { } else {
colortoshow = wrong; colortoshow = wrong;
...@@ -132,15 +132,20 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> { ...@@ -132,15 +132,20 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
hangState = 3; hangState = 3;
} else if (x == 4) { } else if (x == 4) {
hangState = 4; hangState = 4;
} else { } else if (x == 5) {
hangState = 5; hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => socialDistanceResultPage(marks: marks),
));
} }
} }
Widget choicebutton(String k) { Widget choicebutton(String k) {
return Padding( return Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 10.0, vertical: 20.0,
horizontal: 20.0, horizontal: 20.0,
), ),
child: MaterialButton( child: MaterialButton(
...@@ -149,15 +154,15 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> { ...@@ -149,15 +154,15 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
mydata[1][i.toString()][k], mydata[1][i.toString()][k],
style: TextStyle( style: TextStyle(
color: Colors.white, color: Colors.white,
fontSize: 16.0, fontSize: 20.0,
), ),
maxLines: 1, maxLines: 1,
), ),
color: btncolor[k], color: btncolor[k],
splashColor: Colors.indigo[700], splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700], highlightColor: Colors.indigo[700],
minWidth: 200.0, minWidth: 500.0,
height: 45.0, height: 70.0,
shape: shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)), RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
), ),
...@@ -193,18 +198,18 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> { ...@@ -193,18 +198,18 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
body: Column( body: Column(
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
flex: 5, flex: 4,
child: Material( child: Material(
elevation: 20.0, elevation: 20.0,
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 150.0, height: 50.0,
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Material( Material(
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 200.0, height: 375.0,
child: ClipRRect( child: ClipRRect(
child: Image( child: Image(
image: AssetImage( image: AssetImage(
...@@ -218,14 +223,14 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> { ...@@ -218,14 +223,14 @@ class _quizpageSocialDistanceState extends State<quizpageSocialDistance> {
), ),
), ),
Expanded( Expanded(
flex: 2, flex: 1,
child: Container( child: Container(
padding: EdgeInsets.all(15.0), padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft, alignment: Alignment.bottomLeft,
child: Text( child: Text(
mydata[0][i.toString()], mydata[0][i.toString()],
style: TextStyle( style: TextStyle(
fontSize: 16.0, fontSize: 30.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
......
...@@ -4,10 +4,12 @@ import 'package:flutter/services.dart'; ...@@ -4,10 +4,12 @@ import 'package:flutter/services.dart';
class socialDistanceQuizStartPage extends StatefulWidget { class socialDistanceQuizStartPage extends StatefulWidget {
@override @override
_socialDistanceQuizStartPageState createState() => _socialDistanceQuizStartPageState(); _socialDistanceQuizStartPageState createState() =>
_socialDistanceQuizStartPageState();
} }
class _socialDistanceQuizStartPageState extends State<socialDistanceQuizStartPage> { class _socialDistanceQuizStartPageState
extends State<socialDistanceQuizStartPage> {
List<String> images = [ List<String> images = [
"lib/assets/images/startQuiz.png", "lib/assets/images/startQuiz.png",
]; ];
...@@ -73,14 +75,84 @@ class _socialDistanceQuizStartPageState extends State<socialDistanceQuizStartPag ...@@ -73,14 +75,84 @@ class _socialDistanceQuizStartPageState extends State<socialDistanceQuizStartPag
SystemChrome.setPreferredOrientations( SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]); [DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text("STracker"), title: Text("STracker"),
), ),
body: ListView( body: Column(
children: <Widget>[ children: <Widget>[
customcard("Start Quiz", images[0]), 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'; ...@@ -3,12 +3,12 @@ import 'package:flutter/material.dart';
import '../levelsDashboard.dart'; import '../levelsDashboard.dart';
import '../variables.dart'; import '../variables.dart';
class socialDistanceResultPage extends StatefulWidget { class socialDistanceResultPage extends StatefulWidget {
int marks; int marks;
socialDistanceResultPage({Key key, @required this.marks}) : super(key: key); socialDistanceResultPage({Key key, @required this.marks}) : super(key: key);
@override @override
_socialDistanceResultPageState createState() => _socialDistanceResultPageState(marks); _socialDistanceResultPageState createState() =>
_socialDistanceResultPageState(marks);
} }
class _socialDistanceResultPageState extends State<socialDistanceResultPage> { class _socialDistanceResultPageState extends State<socialDistanceResultPage> {
...@@ -27,81 +27,86 @@ class _socialDistanceResultPageState extends State<socialDistanceResultPage> { ...@@ -27,81 +27,86 @@ class _socialDistanceResultPageState extends State<socialDistanceResultPage> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text( title: Text(
"Result for Social Distance", "Result - Social Distance",
),
), ),
), body: Column(
body: Column( children: <Widget>[
children: <Widget>[ Expanded(
Expanded( flex: 2,
flex: 7, child: Row(
child: Material( mainAxisAlignment: MainAxisAlignment.center,
elevation: 10.0, children: <Widget>[],
child: Container( ),
width: 300.0, ),
height: 300.0, Expanded(
child: Column( flex: 3,
children: <Widget>[ child: Row(
Material( mainAxisAlignment: MainAxisAlignment.center,
child: Container( children: <Widget>[
width: 300.0, RaisedButton(
height: 300.0, color: Colors.white,
child: ClipRRect( onPressed: () {},
child: Image( child: ClipRRect(
image: child: Image(
AssetImage("lib/assets/images/gameover.jpg"), image: AssetImage(
), "lib/assets/images/gameover.gif",
),
), ),
), ),
Padding( ),
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 10.0,
horizontal: 15.0, horizontal: 25.0,
), ),
child: Center( )
child: Text( ],
"You Scored $marks marks", ),
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
), ),
), Padding(
Expanded( padding: EdgeInsets.symmetric(
flex: 4, vertical: 5.0,
child: Row( horizontal: 15.0,
mainAxisAlignment: MainAxisAlignment.center, ),
children: <Widget>[ child: Center(
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text( child: Text(
"Continue", "You Scored $marks marks",
style: TextStyle( style: TextStyle(
fontSize: 18.0, fontSize: 30.0,
fontWeight: FontWeight.w900,
), ),
), ),
padding: EdgeInsets.symmetric( )),
vertical: 10.0, Expanded(
horizontal: 25.0, flex: 4,
), child: Row(
borderSide: BorderSide(width: 3.0, color: Colors.indigo), mainAxisAlignment: MainAxisAlignment.center,
splashColor: Colors.indigoAccent, 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:async';
import 'dart:convert'; import 'dart:convert';
import 'package:covidefender/STracker/SocialDistance/socialDistanceResultPage.dart';
import 'package:covidefender/STracker/Symptoms/symptomsResultPage.dart'; import 'package:covidefender/STracker/Symptoms/symptomsResultPage.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
class getjsonSymptoms extends StatelessWidget { class getjsonSymptoms extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
...@@ -92,7 +90,7 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> { ...@@ -92,7 +90,7 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
canceltimer = false; canceltimer = false;
timer = 60; timer = 60;
setState(() { setState(() {
if (i < 5) { if (i < 8) {
i++; i++;
} else { } else {
Navigator.of(context).pushReplacement(MaterialPageRoute( Navigator.of(context).pushReplacement(MaterialPageRoute(
...@@ -133,15 +131,20 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> { ...@@ -133,15 +131,20 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
hangState = 3; hangState = 3;
} else if (x == 4) { } else if (x == 4) {
hangState = 4; hangState = 4;
} else { } else if (x == 5) {
hangState = 5; hangState = 5;
} else if (x == 6) {
hangState = 6;
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => symptomsResultPage(marks: marks),
));
} }
} }
Widget choicebutton(String k) { Widget choicebutton(String k) {
return Padding( return Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 10.0, vertical: 20.0,
horizontal: 20.0, horizontal: 20.0,
), ),
child: MaterialButton( child: MaterialButton(
...@@ -150,15 +153,15 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> { ...@@ -150,15 +153,15 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
mydata[1][i.toString()][k], mydata[1][i.toString()][k],
style: TextStyle( style: TextStyle(
color: Colors.white, color: Colors.white,
fontSize: 16.0, fontSize: 20.0,
), ),
maxLines: 1, maxLines: 1,
), ),
color: btncolor[k], color: btncolor[k],
splashColor: Colors.indigo[700], splashColor: Colors.indigo[700],
highlightColor: Colors.indigo[700], highlightColor: Colors.indigo[700],
minWidth: 200.0, minWidth: 500.0,
height: 45.0, height: 70.0,
shape: shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)), RoundedRectangleBorder(borderRadius: BorderRadius.circular(20.0)),
), ),
...@@ -194,18 +197,18 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> { ...@@ -194,18 +197,18 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
body: Column( body: Column(
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
flex: 5, flex: 4,
child: Material( child: Material(
elevation: 20.0, elevation: 20.0,
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 150.0, height: 50.0,
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Material( Material(
child: Container( child: Container(
width: 200.0, width: 400.0,
height: 200.0, height: 375.0,
child: ClipRRect( child: ClipRRect(
child: Image( child: Image(
image: AssetImage( image: AssetImage(
...@@ -219,14 +222,14 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> { ...@@ -219,14 +222,14 @@ class _quizpageSymptomsState extends State<quizpageSymptoms> {
), ),
), ),
Expanded( Expanded(
flex: 2, flex: 1,
child: Container( child: Container(
padding: EdgeInsets.all(15.0), padding: EdgeInsets.all(15.0),
alignment: Alignment.bottomLeft, alignment: Alignment.bottomLeft,
child: Text( child: Text(
mydata[0][i.toString()], mydata[0][i.toString()],
style: TextStyle( style: TextStyle(
fontSize: 16.0, fontSize: 20.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
......
...@@ -74,14 +74,84 @@ class _symptomsQuizStartPageState extends State<symptomsQuizStartPage> { ...@@ -74,14 +74,84 @@ class _symptomsQuizStartPageState extends State<symptomsQuizStartPage> {
SystemChrome.setPreferredOrientations( SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]); [DeviceOrientation.portraitDown, DeviceOrientation.portraitUp]);
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text("STracker"), title: Text("STracker"),
), ),
body: ListView( body: Column(
children: <Widget>[ children: <Widget>[
customcard("Start Quiz", images[0]), 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'; ...@@ -3,7 +3,6 @@ import 'package:flutter/material.dart';
import '../levelsDashboard.dart'; import '../levelsDashboard.dart';
import '../variables.dart'; import '../variables.dart';
class symptomsResultPage extends StatefulWidget { class symptomsResultPage extends StatefulWidget {
int marks; int marks;
symptomsResultPage({Key key, @required this.marks}) : super(key: key); symptomsResultPage({Key key, @required this.marks}) : super(key: key);
...@@ -27,81 +26,86 @@ class _symptomsResultPageState extends State<symptomsResultPage> { ...@@ -27,81 +26,86 @@ class _symptomsResultPageState extends State<symptomsResultPage> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text( title: Text(
"Result for Social Distance", "Result - Symptoms",
),
), ),
), body: Column(
body: Column( children: <Widget>[
children: <Widget>[ Expanded(
Expanded( flex: 2,
flex: 7, child: Row(
child: Material( mainAxisAlignment: MainAxisAlignment.center,
elevation: 10.0, children: <Widget>[],
child: Container( ),
width: 300.0, ),
height: 300.0, Expanded(
child: Column( flex: 3,
children: <Widget>[ child: Row(
Material( mainAxisAlignment: MainAxisAlignment.center,
child: Container( children: <Widget>[
width: 300.0, RaisedButton(
height: 300.0, color: Colors.white,
child: ClipRRect( onPressed: () {},
child: Image( child: ClipRRect(
image: child: Image(
AssetImage("lib/assets/images/gameover.jpg"), image: AssetImage(
), "lib/assets/images/gameover.gif",
),
), ),
), ),
Padding( ),
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 10.0,
horizontal: 15.0, horizontal: 25.0,
), ),
child: Center( )
child: Text( ],
"You Scored $marks marks", ),
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w700,
),
),
)),
],
)),
), ),
), Padding(
Expanded( padding: EdgeInsets.symmetric(
flex: 4, vertical: 5.0,
child: Row( horizontal: 15.0,
mainAxisAlignment: MainAxisAlignment.center, ),
children: <Widget>[ child: Center(
OutlineButton(
onPressed: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) => levelsDashboard(),
));
},
child: Text( child: Text(
"Continue", "You Scored $marks marks",
style: TextStyle( style: TextStyle(
fontSize: 18.0, fontSize: 30.0,
fontWeight: FontWeight.w900,
), ),
), ),
padding: EdgeInsets.symmetric( )),
vertical: 10.0, Expanded(
horizontal: 25.0, flex: 4,
), child: Row(
borderSide: BorderSide(width: 3.0, color: Colors.indigo), mainAxisAlignment: MainAxisAlignment.center,
splashColor: Colors.indigoAccent, 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 'package:flutter/material.dart';
import 'levelsDashboard.dart'; import 'levelsDashboard.dart';
import 'variables.dart'; import 'variables.dart';
import 'package:http/http.dart' as http;
class finalResult extends StatefulWidget { class finalResult extends StatefulWidget {
int marks; int marks;
...@@ -12,9 +16,177 @@ class finalResult extends StatefulWidget { ...@@ -12,9 +16,177 @@ class finalResult extends StatefulWidget {
class _finalResultState extends State<finalResult> { class _finalResultState extends State<finalResult> {
int marks; 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(); _finalResultState();
@override @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) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
...@@ -25,26 +197,35 @@ class _finalResultState extends State<finalResult> { ...@@ -25,26 +197,35 @@ class _finalResultState extends State<finalResult> {
body: Column( body: Column(
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
flex: 20,
child: Material( child: Material(
elevation: 10.0, elevation: 10.0,
child: Container( child: Container(
width: 300.0, width: 800.0,
height: 300.0, height: 300.0,
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Material( Material(
child: Container( child: Container(
width: 300.0, width: 500.0,
height: 300.0, height: 300.0,
child: ClipRRect( child: Image.asset(
child: Image( 'lib/assets/images/finalResult.gif',
image: fit: BoxFit.contain,
AssetImage("lib/assets/images/gameover.jpg"), 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(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 5.0,
...@@ -52,13 +233,20 @@ class _finalResultState extends State<finalResult> { ...@@ -52,13 +233,20 @@ class _finalResultState extends State<finalResult> {
), ),
child: Center( child: Center(
child: Text( child: Text(
"Hand Washing - $marks1", "Hand Washing - $marks1 / 120 \n \t \t \t \t \t \t $handWashingLevel",
style: TextStyle( style: TextStyle(
fontSize: 20.0, fontSize: 20.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
)), )),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima2.png"),
),
),
Padding( Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 5.0,
...@@ -66,13 +254,20 @@ class _finalResultState extends State<finalResult> { ...@@ -66,13 +254,20 @@ class _finalResultState extends State<finalResult> {
), ),
child: Center( child: Center(
child: Text( child: Text(
"Mask Wearing - $marks2", "Mask Wearing - $marks2 / 160 \n \t \t \t \t \t \t \t $maskWearingLevel",
style: TextStyle( style: TextStyle(
fontSize: 20.0, fontSize: 20.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
)), )),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima3.png"),
),
),
Padding( Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 5.0,
...@@ -80,13 +275,20 @@ class _finalResultState extends State<finalResult> { ...@@ -80,13 +275,20 @@ class _finalResultState extends State<finalResult> {
), ),
child: Center( child: Center(
child: Text( child: Text(
"Social Distance - $marks3", "Social Distance - $marks3 / 160 \n \t \t \t \t \t \t \t $socialDistanceLevel",
style: TextStyle( style: TextStyle(
fontSize: 20.0, fontSize: 20.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
)), )),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima4.png"),
),
),
Padding( Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 5.0,
...@@ -94,13 +296,20 @@ class _finalResultState extends State<finalResult> { ...@@ -94,13 +296,20 @@ class _finalResultState extends State<finalResult> {
), ),
child: Center( child: Center(
child: Text( child: Text(
"Public places - $marks4", "Public places - $marks4 / 80 \n \t \t \t \t \t $publicPlacesLevel",
style: TextStyle( style: TextStyle(
fontSize: 20.0, fontSize: 20.0,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
)), )),
CircleAvatar(
radius: 40.0,
backgroundColor: Colors.white,
child: Image(
image: AssetImage("lib/assets/images/$ima5.png"),
),
),
Padding( Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
vertical: 5.0, vertical: 5.0,
...@@ -108,44 +317,43 @@ class _finalResultState extends State<finalResult> { ...@@ -108,44 +317,43 @@ class _finalResultState extends State<finalResult> {
), ),
child: Center( child: Center(
child: Text( child: Text(
"Symptoms - $marks5", "Symptoms - $marks5 / 40 \n \t \t \t $publicPlacesLevel",
style: TextStyle( style: TextStyle(
fontSize: 20.0, fontSize: 20.0,
fontWeight: FontWeight.w700, 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> { ...@@ -72,7 +72,7 @@ class _levelsDashboardState extends State<levelsDashboard> {
Card( Card(
shape: RoundedRectangleBorder( shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8)), borderRadius: BorderRadius.circular(8)),
elevation: 4, elevation: 10,
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
...@@ -85,10 +85,17 @@ class _levelsDashboardState extends State<levelsDashboard> { ...@@ -85,10 +85,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
); );
}, },
child: Image.asset( child: Image.asset(
'lib/assets/images/handWashing.png'), 'lib/assets/images/handWashing.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Hand Washing', Text('Hand Washing',
style: TextStyle(fontSize: 20.0)), style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
)),
], ],
)), )),
Card( Card(
...@@ -108,10 +115,17 @@ class _levelsDashboardState extends State<levelsDashboard> { ...@@ -108,10 +115,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
); );
}, },
child: Image.asset( child: Image.asset(
'lib/assets/images/maskWearing.png'), 'lib/assets/images/maskWearing.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Mask Wearing', Text('Mask Wearing',
style: TextStyle(fontSize: 20.0)) style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
], ],
)), )),
Card( Card(
...@@ -131,10 +145,17 @@ class _levelsDashboardState extends State<levelsDashboard> { ...@@ -131,10 +145,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
); );
}, },
child: Image.asset( child: Image.asset(
'lib/assets/images/socialDistance.png'), 'lib/assets/images/socialDistance.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Socila Distance', Text('Socila Distance',
style: TextStyle(fontSize: 20.0)) style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
], ],
)), )),
Card( Card(
...@@ -154,10 +175,17 @@ class _levelsDashboardState extends State<levelsDashboard> { ...@@ -154,10 +175,17 @@ class _levelsDashboardState extends State<levelsDashboard> {
); );
}, },
child: Image.asset( child: Image.asset(
'lib/assets/images/publicPlaces.png'), 'lib/assets/images/publicPlaces.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Public Places', Text('Public Places',
style: TextStyle(fontSize: 20.0)) style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
], ],
)), )),
Card( Card(
...@@ -170,18 +198,27 @@ class _levelsDashboardState extends State<levelsDashboard> { ...@@ -170,18 +198,27 @@ class _levelsDashboardState extends State<levelsDashboard> {
FlatButton( FlatButton(
onPressed: () { onPressed: () {
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute(builder: (context) => symptomsQuizStartPage()), MaterialPageRoute(
); builder: (context) =>
symptomsQuizStartPage()),
);
}, },
child: Image.asset( child: Image.asset(
'lib/assets/images/symptoms.png'), 'lib/assets/images/symptoms.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Symptoms', Text('Symptoms',
style: TextStyle(fontSize: 20.0)) style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700,
))
], ],
)), )),
Card( Card(
shape: RoundedRectangleBorder( shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8)), borderRadius: BorderRadius.circular(8)),
elevation: 4, elevation: 4,
...@@ -191,17 +228,24 @@ class _levelsDashboardState extends State<levelsDashboard> { ...@@ -191,17 +228,24 @@ class _levelsDashboardState extends State<levelsDashboard> {
FlatButton( FlatButton(
onPressed: () { onPressed: () {
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute(builder: (context) => finalResult()), MaterialPageRoute(
); builder: (context) => finalResult()),
);
}, },
child: Image.asset( child: Image.asset(
'lib/assets/images/symptoms.png'), 'lib/assets/images/result.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Final Result', 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> { ...@@ -58,6 +58,21 @@ class _strackerDasboardState extends State<strackerDasboard> {
), ),
), ),
Expanded( 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( child: GridView.count(
mainAxisSpacing: 10, mainAxisSpacing: 10,
crossAxisSpacing: 10, crossAxisSpacing: 10,
...@@ -76,13 +91,21 @@ class _strackerDasboardState extends State<strackerDasboard> { ...@@ -76,13 +91,21 @@ class _strackerDasboardState extends State<strackerDasboard> {
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute( MaterialPageRoute(
builder: (context) => levelsDashboard()), builder: (context) =>
levelsDashboard()),
); );
}, },
child: child: Image.asset(
Image.asset('lib/assets/images/play.png'), '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( Card(
...@@ -100,10 +123,16 @@ class _strackerDasboardState extends State<strackerDasboard> { ...@@ -100,10 +123,16 @@ class _strackerDasboardState extends State<strackerDasboard> {
// ); // );
// }, // },
child: Image.asset( child: Image.asset(
'lib/assets/images/instructions.png'), 'lib/assets/images/instructions.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Instructions', Text('Instructions',
style: TextStyle(fontSize: 20.0)) style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700))
], ],
)), )),
Card( Card(
...@@ -121,10 +150,16 @@ class _strackerDasboardState extends State<strackerDasboard> { ...@@ -121,10 +150,16 @@ class _strackerDasboardState extends State<strackerDasboard> {
// ); // );
// }, // },
child: Image.asset( child: Image.asset(
'lib/assets/images/score.png'), 'lib/assets/images/score.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Score Board', Text('Score Board',
style: TextStyle(fontSize: 20.0)) style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700))
], ],
)), )),
Card( Card(
...@@ -142,10 +177,16 @@ class _strackerDasboardState extends State<strackerDasboard> { ...@@ -142,10 +177,16 @@ class _strackerDasboardState extends State<strackerDasboard> {
// ); // );
// }, // },
child: Image.asset( child: Image.asset(
'lib/assets/images/awrenessLevel.png'), 'lib/assets/images/awrenessLevel.png',
fit: BoxFit.contain,
width: 200,
height: 200,
),
), ),
Text('Awreness Level', Text('Awreness Level',
style: TextStyle(fontSize: 20.0)) style: TextStyle(
fontSize: 30.0,
fontWeight: FontWeight.w700))
], ],
)), )),
], ],
......
...@@ -4,3 +4,5 @@ int marks2 = 0; ...@@ -4,3 +4,5 @@ int marks2 = 0;
int marks3 = 0; int marks3 = 0;
int marks4 = 0; int marks4 = 0;
int marks5 = 0; int marks5 = 0;
String marks6 = '';
...@@ -4,7 +4,10 @@ ...@@ -4,7 +4,10 @@
"2": "Question 2: What is the best tap to wash your hands on this Covid 19 disaster situation?", "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?", "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?", "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": { "1": {
...@@ -36,6 +39,24 @@ ...@@ -36,6 +39,24 @@
"b": "Filtered water", "b": "Filtered water",
"c": "Clean, running water", "c": "Clean, running water",
"d": "Well 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 @@ ...@@ -43,6 +64,9 @@
"2": "Operate by leg", "2": "Operate by leg",
"3": "Yes, it is must", "3": "Yes, it is must",
"4": "Yes. must to do", "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", "1": "Question 1: Does wearing mask help to reduce the spread of Covid 19?",
"2": "Question 2: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "2": "Question 2: Do you wear a mask when you go out in public?",
"3": "Question 3: ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc", "3": "Question 3: When choosing a mask how important its comfort and fit ( to your particular face shape )?",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd", "4": "Question 4: What is the type of mask that you wear usually?",
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" "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": { "1": {
"a": "Keep my hands beautiful", "a": "Yes a lot",
"b": "Wash my hands of germs", "b": "Yes some",
"c": "To get smooth feel to hand", "c": "Not sure",
"d": "To get a new look on hand" "d": "No it does nothing"
}, },
"2": { "2": {
"a": "Operate by hand", "a": "Yes, sometimes",
"b": "Operate by mouth", "b": "I dont remember",
"c": "Operate by nose", "c": "Yes, always",
"d": "Operate by leg" "d": "Never"
}, },
"3": { "3": {
"a": "May be", "a": "Not important",
"b": "Sometimes", "b": "Little important",
"c": "Yes, it is must", "c": "Important",
"d": "Never" "d": "Never"
}, },
"4": { "4": {
"a": "Yes. must to do", "a": "Clothing mask",
"b": "Sometimes", "b": "Surgical mask",
"c": "No need to do always", "c": "N95 mask",
"d": "Not applicable" "d": "Non of this"
}, },
"5": { "5": {
"a": "Tank water", "a": "Very important",
"b": "Filtered water", "b": "Important",
"c": "Clean, running water", "c": "Little important",
"d": "Well water" "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", "1": "Yes a lot",
"2": "Operate by leg", "2": "Yes, always",
"3": "Yes, it is must", "3": "Very important",
"4": "Yes. must to do", "4": "N95 mask",
"5": "Clean, running water" "5": "Very important",
"6": "Yes, very good knowledge",
"7": "Yes, always",
"8": "Very important"
} }
] ]
\ No newline at end of file
[ [
{ {
"1": "Question 1: ppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp", "1": "Question 1: In recent days have you gone to any crowded places?",
"2": "Question 2: lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll", "2": "Question 2: Your level of risk of infection with COVID 19?",
"3": "Question 3: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss", "3": "Question 3: Are you going to meeting your friends/ relatives in this lock down period?",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd", "4": "Question 4: Do you limit physical contact ( hand shaking) in public places?",
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" "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": { "1": {
"a": "Keep my hands beautiful", "a": "Yes, a lot",
"b": "Wash my hands of germs", "b": "Yes, but few",
"c": "To get smooth feel to hand", "c": "No",
"d": "To get a new look on hand" "d": "I cant remember"
}, },
"2": { "2": {
"a": "Operate by hand", "a": "High",
"b": "Operate by mouth", "b": "Moderate",
"c": "Operate by nose", "c": "Low",
"d": "Operate by leg" "d": "Very low"
}, },
"3": { "3": {
"a": "May be", "a": "Yes, of course",
"b": "Sometimes", "b": "May be",
"c": "Yes, it is must", "c": "Never",
"d": "Never" "d": "I dont know"
}, },
"4": { "4": {
"a": "Yes. must to do", "a": "Yes, sometimes",
"b": "Sometimes", "b": "Yes, always",
"c": "No need to do always", "c": "Never",
"d": "Not applicable" "d": "I cant remember"
}, },
"5": { "5": {
"a": "Tank water", "a": "Yes, all the time",
"b": "Filtered water", "b": "May be sometimes",
"c": "Clean, running water", "c": "Never",
"d": "Well water" "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", "1": "Yes, a lot",
"2": "Operate by leg", "2": "Very low",
"3": "Yes, it is must", "3": "Never",
"4": "Yes. must to do", "4": "Yes, always",
"5": "Clean, running water" "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", "1": "Question 1: Does keeping social distance help to reduce the spread of COVID 19?",
"2": "Question 2: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "2": "Question 2: Are you practicing any kind of social distancing when you are at public places?",
"3": "Question 3: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss", "3": "Question 3: What is the ideal distance you have to maintain when you are in a crowded place?",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd", "4": "Question 4: Do you cover your nose and mouth during coughing or sneezing with the elbow or tissue?",
"5": "Question 5: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" "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": { "1": {
"a": "Keep my hands beautiful", "a": "No it does nothing",
"b": "Wash my hands of germs", "b": "Not sure",
"c": "To get smooth feel to hand", "c": "Yes, some",
"d": "To get a new look on hand" "d": "Yes, a lot"
}, },
"2": { "2": {
"a": "Operate by hand", "a": "Yes, sometimes",
"b": "Operate by mouth", "b": "Yes, always",
"c": "Operate by nose", "c": "Never",
"d": "Operate by leg" "d": "I cant remember"
}, },
"3": { "3": {
"a": "May be", "a": "0.5 meter distance",
"b": "Sometimes", "b": "2 meter distance",
"c": "Yes, it is must", "c": "0.2 meter distance",
"d": "Never" "d": "0.02 meter distance"
}, },
"4": { "4": {
"a": "Yes. must to do", "a": "Yes, sometimes",
"b": "Sometimes", "b": "Never",
"c": "No need to do always", "c": "Yes, always",
"d": "Not applicable" "d": "Not applicable"
}, },
"5": { "5": {
"a": "Tank water", "a": "Air borne",
"b": "Filtered water", "b": "Respiratory droplets and personal contact",
"c": "Clean, running water", "c": "Animal contact",
"d": "Well water" "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", "1": "Yes, a lot",
"2": "Operate by leg", "2": "Yes, always",
"3": "Yes, it is must", "3": "2 meter distance",
"4": "Yes. must to do", "4": "Yes, always",
"5": "Clean, running water" "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", "2": "Question 2: mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
"3": "Question 3: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss", "3": "Question 3: sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
"4": "Question 4: ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd", "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": { "1": {
"a": "Keep my hands beautiful", "a": "Keep my hands beautiful",
...@@ -37,12 +40,36 @@ ...@@ -37,12 +40,36 @@
"c": "Clean, running water", "c": "Clean, running water",
"d": "Well 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", "1": "Wash my hands of germs",
"2": "Operate by leg", "2": "Operate by leg",
"3": "Yes, it is must", "3": "Yes, it is must",
"4": "Yes. must to do", "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
...@@ -2,6 +2,7 @@ import 'package:covidefender/I_GUIDER/splashIguider.dart'; ...@@ -2,6 +2,7 @@ import 'package:covidefender/I_GUIDER/splashIguider.dart';
import 'package:covidefender/SRouter/srouterDashboard.dart'; import 'package:covidefender/SRouter/srouterDashboard.dart';
import 'package:covidefender/STracker/splash.dart'; import 'package:covidefender/STracker/splash.dart';
import 'package:covidefender/EAnalyzer/Loading.dart'; import 'package:covidefender/EAnalyzer/Loading.dart';
import 'package:covidefender/loginPage.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
class HomeScreen extends StatefulWidget { class HomeScreen extends StatefulWidget {
...@@ -43,11 +44,11 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -43,11 +44,11 @@ class _HomeScreenState extends State<HomeScreen> {
child: Row( child: Row(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
CircleAvatar( // CircleAvatar(
radius: 32, // radius: 32,
backgroundImage: NetworkImage( // backgroundImage: NetworkImage(
'https://upload.wikimedia.org/wikipedia/commons/a/a0/Pierre-Person.jpg'), // 'https://upload.wikimedia.org/wikipedia/commons/a/a0/Pierre-Person.jpg'),
), // ),
SizedBox( SizedBox(
width: 16, width: 16,
), ),
...@@ -78,13 +79,17 @@ class _HomeScreenState extends State<HomeScreen> { ...@@ -78,13 +79,17 @@ class _HomeScreenState extends State<HomeScreen> {
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[ children: <Widget>[
Container( FlatButton(
height: size.height * .1, onPressed: () {
decoration: BoxDecoration( Navigator.push(
image: DecorationImage( context,
image: AssetImage( MaterialPageRoute(
'lib/assets/images/man80.png')), builder: (context) => loginPage()),
)), );
},
child: Image.asset(
'lib/assets/images/man80.png'),
),
Text('My Profile', Text('My Profile',
style: TextStyle(fontSize: 20.0)) 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,
),
)
],
),
)
],
));
}
}
...@@ -9,23 +9,40 @@ class HeartRateScreen extends StatelessWidget { ...@@ -9,23 +9,40 @@ class HeartRateScreen extends StatelessWidget {
appBar: AppBar( appBar: AppBar(
title: Text('Heart Rate Detector'), title: Text('Heart Rate Detector'),
), ),
body: Column( body: Container(
children: [ color: Colors.white,
Padding( child: Column(
padding: const EdgeInsets.all(8.0), children: [
child: Image.asset('lib/assets/images/pulse.gif'), Padding(
), padding: const EdgeInsets.all(8.0),
SizedBox(height: 20), child: Image.asset('lib/assets/images/pulse.gif'),
Column( ),
crossAxisAlignment: CrossAxisAlignment.start, SizedBox(height: 20),
children: [ Column(
ElevatedButton( crossAxisAlignment: CrossAxisAlignment.start,
onPressed: () => Navigator.push(context, MaterialPageRoute(builder: (context) => HomePage(),)), children: [
child: Text('Measure Heart Rate'), Padding(
), padding: const EdgeInsets.fromLTRB(8,70,8,8),
], child: SizedBox(
), height: 70,
], width: 350,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.red[300],
elevation: 15,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12)
)
),
onPressed: () => Navigator.push(context, MaterialPageRoute(builder: (context) => HomePage(),)),
child: Text('Measure Heart Rate'),
),
),
),
],
),
],
),
), ),
); );
} }
......
...@@ -11,23 +11,40 @@ class invoker extends StatelessWidget { ...@@ -11,23 +11,40 @@ class invoker extends StatelessWidget {
appBar: AppBar( appBar: AppBar(
title: Text('Face Mask Detector'), title: Text('Face Mask Detector'),
), ),
body: Column( body: Container(
children: [ color: Colors.white,
Padding( child: Column(
padding: const EdgeInsets.all(8.0), children: [
child: Image.asset('lib/assets/images/wear.gif'), Padding(
), padding: const EdgeInsets.all(8.0),
SizedBox(height: 20), child: Image.asset('lib/assets/images/wear.gif'),
Column( ),
crossAxisAlignment: CrossAxisAlignment.start, SizedBox(height: 20),
children: [ Column(
ElevatedButton( crossAxisAlignment: CrossAxisAlignment.start,
onPressed: () => invokeCamera(), children: [
child: Text('Detect Mask'), Padding(
), padding: const EdgeInsets.fromLTRB(8,70,8,8),
], child: SizedBox(
), height: 70,
], width: 350,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.blue[300],
elevation: 15,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12)
)
),
onPressed: () => invokeCamera(),
child: Text('Detect Mask'),
),
),
),
],
),
],
),
), ),
); );
} }
......
// Message model
import 'package:flutter/cupertino.dart';
@immutable
class Message{
final String title;
final String body;
const Message({
@required this.title,
@required this.body,
});
}
\ No newline at end of file
import 'dart:ffi';
import 'package:flutter/material.dart';
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
import 'package:oktoast/oktoast.dart';
import 'package:path_provider/path_provider.dart';
import 'dart:io' show File, Platform;
import 'package:http/http.dart' as http;
import 'package:rxdart/subjects.dart';
class NotificationPlugin {
//
FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin;
final BehaviorSubject<ReceivedNotification>
didReceivedLocalNotificationSubject =
BehaviorSubject<ReceivedNotification>();
var initializationSettings;
int awarenessLevel = 0;
NotificationPlugin._() {
init();
}
init() async {
flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin();
if (Platform.isIOS) {
_requestIOSPermission();
}
initializePlatformSpecifics();
}
initializePlatformSpecifics() {
var initializationSettingsAndroid =
AndroidInitializationSettings('app_notf_icon');
var initializationSettingsIOS = IOSInitializationSettings(
requestAlertPermission: true,
requestBadgePermission: true,
requestSoundPermission: false,
onDidReceiveLocalNotification: (id, title, body, payload) async {
ReceivedNotification receivedNotification = ReceivedNotification(
id: id, title: title, body: body, payload: payload);
didReceivedLocalNotificationSubject.add(receivedNotification);
},
);
initializationSettings = InitializationSettings(
initializationSettingsAndroid, initializationSettingsIOS);
}
_requestIOSPermission() {
flutterLocalNotificationsPlugin
.resolvePlatformSpecificImplementation<
IOSFlutterLocalNotificationsPlugin>()
.requestPermissions(
alert: false,
badge: true,
sound: true,
);
}
setListenerForLowerVersions(Function onNotificationInLowerVersions) {
didReceivedLocalNotificationSubject.listen((receivedNotification) {
onNotificationInLowerVersions(receivedNotification);
});
}
setOnNotificationClick(Function onNotificationClick) async {
await flutterLocalNotificationsPlugin.initialize(initializationSettings,
onSelectNotification: (String payload) async {
onNotificationClick(payload);
});
}
Future<void> showNotification() async {
var androidChannelSpecifics = AndroidNotificationDetails(
'CHANNEL_ID',
'CHANNEL_NAME',
"CHANNEL_DESCRIPTION",
importance: Importance.Max,
priority: Priority.High,
playSound: true,
timeoutAfter: 5000,
styleInformation: DefaultStyleInformation(true, true),
);
var iosChannelSpecifics = IOSNotificationDetails();
var platformChannelSpecifics =
NotificationDetails(androidChannelSpecifics, iosChannelSpecifics);
await flutterLocalNotificationsPlugin.show(
0,
'Healthy Tips',
'Always Keep Your Hands Clean !', //null
platformChannelSpecifics,
payload: 'New Payload',
);
}
// Future<void> showDailyAtTime() async {
// var time = Time(21, 3, 0);
// var androidChannelSpecifics = AndroidNotificationDetails(
// 'CHANNEL_ID 4',
// 'CHANNEL_NAME 4',
// "CHANNEL_DESCRIPTION 4",
// importance: Importance.Max,
// priority: Priority.High,
// );
// var iosChannelSpecifics = IOSNotificationDetails();
// var platformChannelSpecifics =
// NotificationDetails(androidChannelSpecifics, iosChannelSpecifics);
// await flutterLocalNotificationsPlugin.showDailyAtTime(
// 0,
// 'Test Title at ${time.hour}:${time.minute}.${time.second}',
// 'Test Body', //null
// time,
// platformChannelSpecifics,
// payload: 'Test Payload',
// );
// }
// Future<void> showWeeklyAtDayTime() async {
// var time = Time(21, 5, 0);
// var androidChannelSpecifics = AndroidNotificationDetails(
// 'CHANNEL_ID 5',
// 'CHANNEL_NAME 5',
// "CHANNEL_DESCRIPTION 5",
// importance: Importance.Max,
// priority: Priority.High,
// );
// var iosChannelSpecifics = IOSNotificationDetails();
// var platformChannelSpecifics =
// NotificationDetails(androidChannelSpecifics, iosChannelSpecifics);
// await flutterLocalNotificationsPlugin.showWeeklyAtDayAndTime(
// 0,
// 'Test Title at ${time.hour}:${time.minute}.${time.second}',
// 'Test Body', //null
// Day.Saturday,
// time,
// platformChannelSpecifics,
// payload: 'Test Payload',
// );
// }
Future<void> repeatNotification() async {
RepeatInterval Freq;
if(awarenessLevel != null ){
print('::: awareness is at :'+awarenessLevel.toString());
if(awarenessLevel >= 0 && awarenessLevel < 2){
Freq = RepeatInterval.EveryMinute;
print('::: awareness is 0 - 2');
}else if(awarenessLevel >= 2 && awarenessLevel < 4){
Freq = RepeatInterval.Hourly;
print('::: awareness is 2 - 3 ');
}else if(awarenessLevel == 4){
Freq = RepeatInterval.Daily;
print('::: awareness is 4');
}else{
showToast(
"Awareness level is not compatible , please try again !",
duration: Duration(seconds: 2),
position: ToastPosition.bottom,
backgroundColor: Colors.black.withOpacity(0.8),
radius: 13.0,
textStyle: TextStyle(fontSize: 18.0),
);
}
}else{
showToast(
"Awareness level is not Availble !",
duration: Duration(seconds: 2),
position: ToastPosition.bottom,
backgroundColor: Colors.black.withOpacity(0.8),
radius: 13.0,
textStyle: TextStyle(fontSize: 18.0),
);
}
var androidChannelSpecifics = AndroidNotificationDetails(
'CHANNEL_ID 3',
'CHANNEL_NAME 3',
"CHANNEL_DESCRIPTION 3",
importance: Importance.Max,
priority: Priority.High,
styleInformation: DefaultStyleInformation(true, true),
);
var iosChannelSpecifics = IOSNotificationDetails();
var platformChannelSpecifics =
NotificationDetails(androidChannelSpecifics, iosChannelSpecifics);
await flutterLocalNotificationsPlugin.periodicallyShow(
0,
'Tips from COVIDEFENDER :D ',
'Always Keep Your Hands Clean !',
Freq,
platformChannelSpecifics,
payload: 'Test Payload',
);
}
// Future<void> scheduleNotification() async {
// var scheduleNotificationDateTime = DateTime.now().add(Duration(seconds: 5));
// var androidChannelSpecifics = AndroidNotificationDetails(
// 'CHANNEL_ID 1',
// 'CHANNEL_NAME 1',
// "CHANNEL_DESCRIPTION 1",
// icon: 'secondary_icon',
// sound: RawResourceAndroidNotificationSound('my_sound'),
// largeIcon: DrawableResourceAndroidBitmap('large_notf_icon'),
// enableLights: true,
// color: const Color.fromARGB(255, 255, 0, 0),
// ledColor: const Color.fromARGB(255, 255, 0, 0),
// ledOnMs: 1000,
// ledOffMs: 500,
// importance: Importance.Max,
// priority: Priority.High,
// playSound: true,
// timeoutAfter: 5000,
// styleInformation: DefaultStyleInformation(true, true),
// );
// var iosChannelSpecifics = IOSNotificationDetails(
// sound: 'my_sound.aiff',
// );
// var platformChannelSpecifics = NotificationDetails(
// androidChannelSpecifics,
// iosChannelSpecifics,
// );
// await flutterLocalNotificationsPlugin.schedule(
// 0,
// 'Test Title',
// 'Test Body',
// scheduleNotificationDateTime,
// platformChannelSpecifics,
// payload: 'Test Payload',
// );
// }
// Future<void> showNotificationWithAttachment() async {
// var attachmentPicturePath = await _downloadAndSaveFile(
// 'https://via.placeholder.com/800x200', 'attachment_img.jpg');
// var iOSPlatformSpecifics = IOSNotificationDetails(
// attachments: [IOSNotificationAttachment(attachmentPicturePath)],
// );
// var bigPictureStyleInformation = BigPictureStyleInformation(
// FilePathAndroidBitmap(attachmentPicturePath),
// contentTitle: '<b>Attached Image</b>',
// htmlFormatContentTitle: true,
// summaryText: 'Test Image',
// htmlFormatSummaryText: true,
// );
// var androidChannelSpecifics = AndroidNotificationDetails(
// 'CHANNEL ID 2',
// 'CHANNEL NAME 2',
// 'CHANNEL DESCRIPTION 2',
// importance: Importance.High,
// priority: Priority.High,
// styleInformation: bigPictureStyleInformation,
// );
// var notificationDetails =
// NotificationDetails(androidChannelSpecifics, iOSPlatformSpecifics);
// await flutterLocalNotificationsPlugin.show(
// 0,
// 'Title with attachment',
// 'Body with Attachment',
// notificationDetails,
// );
// }
// _downloadAndSaveFile(String url, String fileName) async {
// var directory = await getApplicationDocumentsDirectory();
// var filePath = '${directory.path}/$fileName';
// var response = await http.get(url);
// var file = File(filePath);
// await file.writeAsBytes(response.bodyBytes);
// return filePath;
// }
// Future<int> getPendingNotificationCount() async {
// List<PendingNotificationRequest> p =
// await flutterLocalNotificationsPlugin.pendingNotificationRequests();
// return p.length;
// }
// Future<void> cancelNotification() async {
// await flutterLocalNotificationsPlugin.cancel(0);
// }
// Future<void> cancelAllNotification() async {
// await flutterLocalNotificationsPlugin.cancelAll();
// }
}
NotificationPlugin notificationPlugin = NotificationPlugin._();
class ReceivedNotification {
final int id;
final String title;
final String body;
final String payload;
ReceivedNotification({
@required this.id,
@required this.title,
@required this.body,
@required this.payload,
});
}
\ No newline at end of file
import 'package:covidefender/pages/notificator/model/Notification_plugin.dart';
import 'package:flutter/material.dart';
import 'NotificationUI.dart';
class LocalNotificationScreen extends StatefulWidget {
@override
_LocalNotificationScreenState createState() =>
_LocalNotificationScreenState();
}
class _LocalNotificationScreenState extends State<LocalNotificationScreen> {
//
int count = 0;
@override
void initState() {
super.initState();
notificationPlugin
.setListenerForLowerVersions(onNotificationInLowerVersions);
notificationPlugin.setOnNotificationClick(onNotificationClick);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.green,
title: Text('Local Notifications'),
),
body: Center(
child: FlatButton(
onPressed: () async {
await notificationPlugin.showNotification();
// await notificationPlugin.scheduleNotification();
// await notificationPlugin.showNotificationWithAttachment();
await notificationPlugin.repeatNotification();
// await notificationPlugin.showDailyAtTime();
// await notificationPlugin.showWeeklyAtDayTime();
// count = await notificationPlugin.getPendingNotificationCount();
// print('Count $count');
// await notificationPlugin.cancelNotification();
// count = await notificationPlugin.getPendingNotificationCount();
// print('Count $count');
},
child: Text('Send Notification'),
),
),
);
}
onNotificationInLowerVersions(ReceivedNotification receivedNotification) {
print('Notification Received ${receivedNotification.id}');
}
onNotificationClick(String payload) {
print('Payload $payload');
Navigator.push(context, MaterialPageRoute(builder: (coontext) {
return NotificationScreen(
payload: payload,
);
}));
}
}
import 'package:flutter/material.dart';
import 'LocalNotificationUI.dart';
import 'notificator.dart';
class MainNotificationUI extends StatefulWidget {
//
final String payload;
MainNotificationUI({this.payload});
@override
_NotificationScreenState createState() => _NotificationScreenState();
}
class _NotificationScreenState extends State<MainNotificationUI> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.green,
title: Text('Smart Notifier'),
),
body: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Image.asset('lib/assets/images/notify.gif'),
),
SizedBox(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.green[300],
elevation: 15,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12)
)
),
onPressed: (){
Navigator.push(context, MaterialPageRoute(builder: (context) => LocalNotificationScreen() ));
}, child: Text("Local Notifications")),
),
Padding(
padding: const EdgeInsets.fromLTRB(8,8,8,100),
child: SizedBox(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.green[300],
elevation: 15,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12)
)
),
onPressed: (){
Navigator.push(context, MaterialPageRoute(builder: (context) => MessagingWidget() ));
}, child: Text("Push Notifications")),
),
)
],
),
),
);
}
}
import 'package:flutter/material.dart';
class NotificationScreen extends StatefulWidget {
//
final String payload;
NotificationScreen({this.payload});
@override
_NotificationScreenState createState() => _NotificationScreenState();
}
class _NotificationScreenState extends State<NotificationScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Notifications Screen'),
),
body: Center(
child: Text(widget.payload),
),
);
}
}
import 'dart:ffi';
import 'package:covidefender/pages/notificator/model/Message.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/cupertino.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/material.dart';
class MessagingWidget extends StatefulWidget {
// const MessagingWidget({Key? key}) : super(key: key);
@override
_MessagingWidgetState createState() => _MessagingWidgetState();
}
class _MessagingWidgetState extends State<MessagingWidget> {
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
final List<Message> messages = [];
@override
Void initState() {
super.initState();
_firebaseMessaging.configure(
onMessage: (Map<String, dynamic> message) async {
final notification = message['notification'];
setState(() {
messages.add(
Message(title: notification['title'], body: notification['body']));
});
print("OnMessage: $message");
}, onLaunch: (Map<String, dynamic> message) async {
final notification = message['notification'];
print("onLaunch: $message");
setState(() {
messages.add(
Message(title: notification['title'], body: notification['body']));
});
}, onResume: (Map<String, dynamic> message) async {
print("onResume: $message");
});
}
// @override
// Widget build(BuildContext context) => ListView(
// children: messages.map(buildMessage).toList(),
// );
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.green,
title: Text("Smart - Notificator "),
),
body: Container(
margin: EdgeInsets.only(bottom: 20, left: 10, right: 10, top: 10),
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.blue.withOpacity(0.4),
blurRadius: 8,
offset: Offset(4, 4),
spreadRadius: 5)
],
gradient: LinearGradient(
colors: [Colors.green[600], Colors.white],
begin: Alignment.centerLeft,
end: Alignment.centerRight,
),
borderRadius: BorderRadius.all(Radius.circular(20)),
),
child: ListView(
children: messages.map(buildMessage).toList(),
),
));
}
Widget buildMessage(Message message) => ListTile(
title: Text(
message.title != null ? message.title : "No messages Yet",
style: TextStyle(
color: Colors.white,
fontFamily: 'avenir',
),
),
subtitle: Text(message.body != null ? message.body:"empty"),
);
}
import 'package:covidefender/pages/self_carer/model/MessageSender.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
class SC_medicalResult extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Results'),
),
body: SingleChildScrollView(
child: Container(
color: Colors.white,
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/lab.gif')),
),
SizedBox(
height: 10,
),
Padding(
padding: const EdgeInsets.all(16.0),
child: Text("Request Medical Officer Support",
style: GoogleFonts.lato(
color: Colors.green,
fontSize: 24,
fontWeight: FontWeight.bold,
letterSpacing: 2)),
),
SizedBox(
height: 10,
),
Padding(
padding: const EdgeInsets.fromLTRB(20,50,50,10),
child: Text(
"I agree To send My Details and location to Medical Officer ",
style: GoogleFonts.adamina(color: Colors.blue,fontSize: 16,fontStyle: FontStyle.italic,wordSpacing: 2),
),
),
SizedBox(
height: 60,
),
SizedBox(
height: 70,
width: 350,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.red[300],
elevation: 15,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12)
)
),
onPressed: () {
MessageSender m = new MessageSender();
m.SENDSMS();
},
child: Text('SEND SMS',style: GoogleFonts.lato(
fontWeight: FontWeight.bold,
fontSize: 16
),)),
)
],
),
),
),
);
}
}
import 'package:covidefender/pages/self_carer/SC_medicalSupport.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
class SC_resultScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Results'),
),
body: SingleChildScrollView(
child: Container(
color: Colors.white,
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/lab.gif')),
),
SizedBox(
height: 10,
),
Text("Analysis Results",
style: GoogleFonts.lato(
color: Colors.blue,
fontSize: 24,
fontWeight: FontWeight.bold,
letterSpacing: 2)),
SizedBox(
height: 10,
),
Padding(
padding: const EdgeInsets.fromLTRB(20,50,50,10),
child: Text(
"Seem's you are having Symptoms Related to Covid19.\n"
"Let's Get Medical Assistance ! \n"
"Click Below Button To Get a Health Officer",
style: GoogleFonts.adamina(color: Colors.red ,fontSize: 16,fontStyle: FontStyle.italic,wordSpacing: 2),
),
),
SizedBox(
height: 60,
),
SizedBox(
height: 70,
width: 350,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.red[300],
elevation: 15,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12)
)
),
onPressed: () {
Navigator.of(context).push(MaterialPageRoute(builder: (context)=>SC_medicalResult()));
},
child: Text('Medical Support',style: GoogleFonts.lato(
fontWeight: FontWeight.bold,
fontSize: 16
),)),
)
],
),
),
),
);
}
}
import 'dart:collection';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter_sms/flutter_sms.dart';
class MessageSender {
List<String> recipients= ["+94776957629"];
String Name;
String phoneNumber;
String Address;
String HomePhone;
//
// Map<String,String> myDetails = {
// "Name" : "Indika Nuwan",
// "Address" : "02 nd post ,Mawanella",
// "HomePhone" : "03522444555",
// "message" : "This Patient Need Imediate assistance"
// };
// MessageSender(this.recipients, this.message);
void SENDSMS () async{
print("Executing get data");
final CollectionReference userlist =
FirebaseFirestore.instance.collection("users");
userlist.get().then((datasnapshot){
print("Executing get data ...");
FirebaseFirestore.instance.collection("users").get().then((QuerySnapshot snapshot){
snapshot.docs.forEach((doc) async {
print(doc["Name"]);
print(doc["Address"]);
print(doc["Home phone"]);
print(doc["mobile"]);
Map<String,String> UserDetails = {
"Name" : doc["Name"],
"Address" : doc["Address"],
"HomePhone" : doc["Home phone"],
"message" : "This Patient Need Imediate assistance"
};
print("UserDetails : "+UserDetails.toString());
String result = await sendSMS(message: UserDetails.toString(), recipients: recipients).catchError((onError)=>print(onError));
print("result");
});
});
});
}
}
import 'dart:ui';
class Symptoms {
String symptomname;
bool value;
List<Color> gradientColors;
Symptoms(this.symptomname, this.value,{this.gradientColors});
@override
String toString() {
return 'Symptoms{symptomname: $symptomname, value: $value}';
}
}
\ No newline at end of file
import 'package:flutter/material.dart';
class CustomColors {
static Color primaryTextColor = Colors.white;
static Color dividerColor = Colors.white54;
static Color pageBackgroundColor = Color(0xFF2D2F41);
static Color menuBackgroundColor = Color(0xFF242634);
static Color clockBG = Color(0xFF444974);
static Color clockOutline = Color(0xFFEAECFF);
static Color secHandColor = Colors.orange[300];
static Color minHandStatColor = Color(0xFF748EF6);
static Color minHandEndColor = Color(0xFF77DDFF);
static Color hourHandStatColor = Color(0xFFC279FB);
static Color hourHandEndColor = Color(0xFFEA74AB);
}
class GradientColors {
final List<Color> colors;
GradientColors(this.colors);
static List<Color> sky = [Color(0xFF6448FE), Color(0xFF5FC6FF)];
static List<Color> sunset = [Color(0xFFFE6197), Color(0xFFFFB463)];
static List<Color> sea = [Color(0xFF61A3FE), Color(0xFF63FFD5)];
static List<Color> mango = [Color(0xFFFFA738), Color(0xFFFFE130)];
static List<Color> fire = [Color(0xFFFF5DCD), Color(0xFFFF8484)];
}
class GradientTemplate {
static List<GradientColors> gradientTemplate = [
GradientColors(GradientColors.sky),
GradientColors(GradientColors.sunset),
GradientColors(GradientColors.sea),
GradientColors(GradientColors.mango),
GradientColors(GradientColors.fire),
];
}
import 'dart:collection';
import 'package:covidefender/pages/self_carer/SC_result_screen.dart';
import 'package:covidefender/pages/self_carer/model/colors.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/hospital.gif',
)),
SizedBox(
height: 350,
child: new ListView(
children: values.keys.map((String key) {
return Container(
margin: EdgeInsets.only(bottom: 20,left: 10,right: 10),
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.blue.withOpacity(0.4) ,blurRadius: 8, offset: Offset(4,4),spreadRadius: 4
)
],
gradient: LinearGradient(
colors: [Colors.blue[600], Colors.white],
begin: Alignment.centerLeft,
end: Alignment.centerRight,
),
borderRadius: BorderRadius.all(Radius.circular(24)),
),
child: SizedBox(
height: 90,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: new CheckboxListTile(
title: new Text(key,style:TextStyle(
color: Colors.white,
fontFamily: 'avenir',
),),
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);
print(
'Selected Items::' + symptomList.toString());
}
});
});
print(key);
},
),
),
),
);
}).toList(),
),
),
],
),
),
),
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)),
);
}
}
...@@ -33,7 +33,12 @@ dependencies: ...@@ -33,7 +33,12 @@ dependencies:
wakelock: ^0.1.4+1 wakelock: ^0.1.4+1
charts_flutter: ^0.9.0 charts_flutter: ^0.9.0
flutter_spinkit: "^4.1.2" flutter_spinkit: "^4.1.2"
google_fonts: ^1.1.2
flutter_sms: ^2.1.1
firebase_messaging: ^4.0.0+1
rxdart: ^0.24.1
path_provider: ^1.6.11
flutter_local_notifications: ^1.4.4+1
# The following adds the Cupertino Icons font to your application. # The following adds the Cupertino Icons font to your application.
...@@ -41,11 +46,8 @@ dependencies: ...@@ -41,11 +46,8 @@ dependencies:
cupertino_icons: ^1.0.2 cupertino_icons: ^1.0.2
http: ^0.12.2 http: ^0.12.2
#add dependencies for heart rate module
#add dependencies for heart rate module
camera: camera:
git: git:
...@@ -113,6 +115,28 @@ flutter: ...@@ -113,6 +115,28 @@ flutter:
- lib/assets/images/4.png - lib/assets/images/4.png
- lib/assets/images/5.png - lib/assets/images/5.png
- lib/assets/images/6.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/hero.gif
- lib/assets/images/map80.png - lib/assets/images/map80.png
...@@ -126,6 +150,9 @@ flutter: ...@@ -126,6 +150,9 @@ flutter:
- lib/assets/labels.txt - lib/assets/labels.txt
- assets/ - assets/
- lib/assets/images/wear.gif - lib/assets/images/wear.gif
- lib/assets/images/hospital.gif
- lib/assets/images/lab.gif
- lib/assets/images/notify.gif
# To add assets to your application, add an assets section, like this: # To add assets to your application, add an assets section, like this:
# assets: # assets:
......
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