Commit dd5ac309 by Ramesh Babu Puvvadi

added

parent 846b5cf0
...@@ -408,24 +408,6 @@ class _Home extends State<Home> { ...@@ -408,24 +408,6 @@ class _Home extends State<Home> {
), ),
], ],
), ),
// Row(
// mainAxisAlignment: MainAxisAlignment.start,
// children: [
// Text('Border Color: $bordercolor\n'),
// ],
// ),
// Row(
// mainAxisAlignment: MainAxisAlignment.start,
// children: [
// Text('Border Size: $bordersize\n'),
// ],
// ),
// Row(
// mainAxisAlignment: MainAxisAlignment.start,
// children: [
// Text('Border Work Color: $borderworkcolor\n'),
// ],
// ),
], ],
) )
else else
...@@ -460,8 +442,8 @@ class _Home extends State<Home> { ...@@ -460,8 +442,8 @@ class _Home extends State<Home> {
IconButton( IconButton(
icon: Image.asset( icon: Image.asset(
"assets/images/signout.png", "assets/images/signout.png",
width: 24, // Adjust the width as needed width: 24,
height: 24, // Adjust the height as needed height: 24,
), ),
onPressed: () async { onPressed: () async {
bool valid = await Constants.checkInternetConnectivity(); bool valid = await Constants.checkInternetConnectivity();
......
...@@ -230,11 +230,6 @@ class _SignUpState extends State<SignUp> { ...@@ -230,11 +230,6 @@ class _SignUpState extends State<SignUp> {
'', _email.text, '', '', '', true); '', _email.text, '', '', '', true);
Navigator.pushReplacement(context, Navigator.pushReplacement(context,
MaterialPageRoute(builder: (context) => const Home())); MaterialPageRoute(builder: (context) => const Home()));
// if (_email.text.isNotEmpty) {
// takePicture();
// } else {
// print('Else case');
// }
}, },
style: ButtonStyle( style: ButtonStyle(
shape: MaterialStateProperty.all<RoundedRectangleBorder>( shape: MaterialStateProperty.all<RoundedRectangleBorder>(
...@@ -272,20 +267,6 @@ class _SignUpState extends State<SignUp> { ...@@ -272,20 +267,6 @@ class _SignUpState extends State<SignUp> {
), ),
), ),
), ),
// SizedBox(
// width: MediaQuery.of(context).size.width * 0.94,
// height: MediaQuery.of(context).size.height * 0.16,
// child: imagefile != null
// ? Image.file(
// imagefile!,
// fit: BoxFit.cover,
// )
// : Image.asset(
// 'assets/images/captureimage.png',
// width: MediaQuery.of(context).size.width * 0.80,
// height: MediaQuery.of(context).size.height * 0.16,
// ),
// ),
], ],
), ),
), ),
......
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