Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2023-10-22 18:53:35 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cf06a68608d0e798effee9f91fc19df462ab2475
cf06a686
1 parent
979d94df
use super parameters lint fixes
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
example/lib/barcode_list_scanner_controller.dart
example/lib/barcode_scanner_controller.dart
example/lib/barcode_scanner_pageview.dart
example/lib/barcode_scanner_returning_image.dart
example/lib/barcode_scanner_window.dart
example/lib/barcode_scanner_without_controller.dart
example/lib/barcode_scanner_zoom.dart
example/lib/main.dart
example/lib/scanner_error_widget.dart
example/lib/barcode_list_scanner_controller.dart
View file @
cf06a68
...
...
@@ -4,7 +4,7 @@ import 'package:mobile_scanner/mobile_scanner.dart';
import
'package:mobile_scanner_example/scanner_error_widget.dart'
;
class
BarcodeListScannerWithController
extends
StatefulWidget
{
const
BarcodeListScannerWithController
({
Key
?
key
})
:
super
(
key:
key
);
const
BarcodeListScannerWithController
({
super
.
key
}
);
@override
State
<
BarcodeListScannerWithController
>
createState
()
=>
...
...
example/lib/barcode_scanner_controller.dart
View file @
cf06a68
...
...
@@ -4,7 +4,7 @@ import 'package:mobile_scanner/mobile_scanner.dart';
import
'package:mobile_scanner_example/scanner_error_widget.dart'
;
class
BarcodeScannerWithController
extends
StatefulWidget
{
const
BarcodeScannerWithController
({
Key
?
key
})
:
super
(
key:
key
);
const
BarcodeScannerWithController
({
super
.
key
}
);
@override
State
<
BarcodeScannerWithController
>
createState
()
=>
...
...
example/lib/barcode_scanner_pageview.dart
View file @
cf06a68
...
...
@@ -3,7 +3,7 @@ import 'package:mobile_scanner/mobile_scanner.dart';
import
'package:mobile_scanner_example/scanner_error_widget.dart'
;
class
BarcodeScannerPageView
extends
StatefulWidget
{
const
BarcodeScannerPageView
({
Key
?
key
})
:
super
(
key:
key
);
const
BarcodeScannerPageView
({
super
.
key
}
);
@override
State
<
BarcodeScannerPageView
>
createState
()
=>
_BarcodeScannerPageViewState
();
...
...
example/lib/barcode_scanner_returning_image.dart
View file @
cf06a68
...
...
@@ -5,7 +5,7 @@ import 'package:mobile_scanner/mobile_scanner.dart';
import
'package:mobile_scanner_example/scanner_error_widget.dart'
;
class
BarcodeScannerReturningImage
extends
StatefulWidget
{
const
BarcodeScannerReturningImage
({
Key
?
key
})
:
super
(
key:
key
);
const
BarcodeScannerReturningImage
({
super
.
key
}
);
@override
State
<
BarcodeScannerReturningImage
>
createState
()
=>
...
...
example/lib/barcode_scanner_window.dart
View file @
cf06a68
...
...
@@ -6,7 +6,7 @@ import 'package:mobile_scanner/mobile_scanner.dart';
import
'package:mobile_scanner_example/scanner_error_widget.dart'
;
class
BarcodeScannerWithScanWindow
extends
StatefulWidget
{
const
BarcodeScannerWithScanWindow
({
Key
?
key
})
:
super
(
key:
key
);
const
BarcodeScannerWithScanWindow
({
super
.
key
}
);
@override
State
<
BarcodeScannerWithScanWindow
>
createState
()
=>
...
...
example/lib/barcode_scanner_without_controller.dart
View file @
cf06a68
...
...
@@ -3,7 +3,7 @@ import 'package:mobile_scanner/mobile_scanner.dart';
import
'package:mobile_scanner_example/scanner_error_widget.dart'
;
class
BarcodeScannerWithoutController
extends
StatefulWidget
{
const
BarcodeScannerWithoutController
({
Key
?
key
})
:
super
(
key:
key
);
const
BarcodeScannerWithoutController
({
super
.
key
}
);
@override
State
<
BarcodeScannerWithoutController
>
createState
()
=>
...
...
example/lib/barcode_scanner_zoom.dart
View file @
cf06a68
...
...
@@ -5,7 +5,7 @@ import 'package:mobile_scanner/mobile_scanner.dart';
import
'package:mobile_scanner_example/scanner_error_widget.dart'
;
class
BarcodeScannerWithZoom
extends
StatefulWidget
{
const
BarcodeScannerWithZoom
({
Key
?
key
})
:
super
(
key:
key
);
const
BarcodeScannerWithZoom
({
super
.
key
}
);
@override
State
<
BarcodeScannerWithZoom
>
createState
()
=>
_BarcodeScannerWithZoomState
();
...
...
example/lib/main.dart
View file @
cf06a68
...
...
@@ -11,7 +11,7 @@ import 'package:mobile_scanner_example/mobile_scanner_overlay.dart';
void
main
(
)
=>
runApp
(
const
MaterialApp
(
home:
MyHome
()));
class
MyHome
extends
StatelessWidget
{
const
MyHome
({
Key
?
key
})
:
super
(
key:
key
);
const
MyHome
({
super
.
key
}
);
@override
Widget
build
(
BuildContext
context
)
{
...
...
example/lib/scanner_error_widget.dart
View file @
cf06a68
...
...
@@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
import
'package:mobile_scanner/mobile_scanner.dart'
;
class
ScannerErrorWidget
extends
StatelessWidget
{
const
ScannerErrorWidget
({
Key
?
key
,
required
this
.
error
})
:
super
(
key:
key
);
const
ScannerErrorWidget
({
super
.
key
,
required
this
.
error
}
);
final
MobileScannerException
error
;
...
...
Please
register
or
login
to post a comment