Skip to content

Commit e76b9a0

Browse files
authored
Merge branch 'working' into main
2 parents 16a5a2d + e0b0c26 commit e76b9a0

2 files changed

Lines changed: 7 additions & 10 deletions

File tree

lib/barcodeScanner.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ class _ScannerState extends State<Scanner> {
3636
);
3737
},
3838
);
39-
4039
if (kDebugMode) {
4140
print(barcodeScanRes);
4241
}

lib/result2.dart

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class _ScannedEntryState extends State<ScannedEntry> {
2626

2727

2828
return Scaffold(
29-
bottomSheet: ResultFooter(),
29+
bottomSheet: resultFooter(),
3030
body: Container(
3131
padding: const EdgeInsets.only(left: 20, right: 20),
3232
child: Center(
@@ -144,8 +144,7 @@ class _ScannedEntryState extends State<ScannedEntry> {
144144
style: TextStyle(fontSize: 18),
145145
),
146146
);
147-
}
148-
;
147+
};
149148
},
150149
),
151150
),
@@ -181,7 +180,9 @@ class Buttons extends StatelessWidget {
181180
),
182181
shape: MaterialStatePropertyAll(
183182
RoundedRectangleBorder(
184-
borderRadius: BorderRadius.circular(10),
183+
borderRadius: BorderRadius.circular(
184+
10,
185+
),
185186
),
186187
),
187188
),
@@ -205,13 +206,10 @@ class Buttons extends StatelessWidget {
205206
}
206207
}
207208

208-
Widget ResultFooter() {
209+
Widget resultFooter() {
209210
return Row(
210211
mainAxisAlignment: MainAxisAlignment.center,
211212
children: [
212-
// SizedBox(
213-
// width: 145,
214-
// ),
215213
SizedBox(
216214
height: 100,
217215
width: 100,
@@ -233,7 +231,7 @@ Widget ResultFooter() {
233231
"images/brl_logo.png",
234232
),
235233
),
236-
)
234+
),
237235
],
238236
),
239237
),

0 commit comments

Comments
 (0)