Skip to content

Commit

Permalink
Merge branch 'working' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
beingadish authored Oct 28, 2022
2 parents 16a5a2d + e0b0c26 commit e76b9a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
1 change: 0 additions & 1 deletion lib/barcodeScanner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class _ScannerState extends State<Scanner> {
);
},
);

if (kDebugMode) {
print(barcodeScanRes);
}
Expand Down
16 changes: 7 additions & 9 deletions lib/result2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class _ScannedEntryState extends State<ScannedEntry> {


return Scaffold(
bottomSheet: ResultFooter(),
bottomSheet: resultFooter(),
body: Container(
padding: const EdgeInsets.only(left: 20, right: 20),
child: Center(
Expand Down Expand Up @@ -144,8 +144,7 @@ class _ScannedEntryState extends State<ScannedEntry> {
style: TextStyle(fontSize: 18),
),
);
}
;
};
},
),
),
Expand Down Expand Up @@ -181,7 +180,9 @@ class Buttons extends StatelessWidget {
),
shape: MaterialStatePropertyAll(
RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
borderRadius: BorderRadius.circular(
10,
),
),
),
),
Expand All @@ -205,13 +206,10 @@ class Buttons extends StatelessWidget {
}
}

Widget ResultFooter() {
Widget resultFooter() {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
// SizedBox(
// width: 145,
// ),
SizedBox(
height: 100,
width: 100,
Expand All @@ -233,7 +231,7 @@ Widget ResultFooter() {
"images/brl_logo.png",
),
),
)
),
],
),
),
Expand Down

0 comments on commit e76b9a0

Please sign in to comment.