File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ class _ScannerState extends State<Scanner> {
3636 );
3737 },
3838 );
39-
4039 if (kDebugMode) {
4140 print (barcodeScanRes);
4241 }
Original file line number Diff line number Diff 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 ),
You can’t perform that action at this time.
0 commit comments