Commit 750dc7a1 authored by indika N kumara's avatar indika N kumara

Merge branch 'revert-848195bd' into 'master'

Revert "Merge branch 'I_GUIDER_PHASE_02_NK' into 'master'"

See merge request !16
parents 848195bd 0a8ae634
...@@ -9,9 +9,7 @@ class HeartRateScreen extends StatelessWidget { ...@@ -9,9 +9,7 @@ class HeartRateScreen extends StatelessWidget {
appBar: AppBar( appBar: AppBar(
title: Text('Heart Rate Detector'), title: Text('Heart Rate Detector'),
), ),
body: Container( body: Column(
color: Colors.white,
child: Column(
children: [ children: [
Padding( Padding(
padding: const EdgeInsets.all(8.0), padding: const EdgeInsets.all(8.0),
...@@ -21,29 +19,14 @@ class HeartRateScreen extends StatelessWidget { ...@@ -21,29 +19,14 @@ class HeartRateScreen extends StatelessWidget {
Column( Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Padding( ElevatedButton(
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(),)), onPressed: () => Navigator.push(context, MaterialPageRoute(builder: (context) => HomePage(),)),
child: Text('Measure Heart Rate'), child: Text('Measure Heart Rate'),
), ),
),
),
], ],
), ),
], ],
), ),
),
); );
} }
} }
...@@ -11,9 +11,7 @@ class invoker extends StatelessWidget { ...@@ -11,9 +11,7 @@ class invoker extends StatelessWidget {
appBar: AppBar( appBar: AppBar(
title: Text('Face Mask Detector'), title: Text('Face Mask Detector'),
), ),
body: Container( body: Column(
color: Colors.white,
child: Column(
children: [ children: [
Padding( Padding(
padding: const EdgeInsets.all(8.0), padding: const EdgeInsets.all(8.0),
...@@ -23,29 +21,14 @@ class invoker extends StatelessWidget { ...@@ -23,29 +21,14 @@ class invoker extends StatelessWidget {
Column( Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Padding( ElevatedButton(
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(), onPressed: () => invokeCamera(),
child: Text('Detect Mask'), child: Text('Detect Mask'),
), ),
),
),
], ],
), ),
], ],
), ),
),
); );
} }
......
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