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-13 12:18:01 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e94517f5901cd96515dbcc45b5579ad89611abe6
e94517f5
1 parent
8527cc00
fix lint
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 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/barcode_list_scanner_controller.dart
View file @
e94517f
...
...
@@ -7,7 +7,7 @@ class BarcodeListScannerWithController extends StatefulWidget {
const
BarcodeListScannerWithController
({
Key
?
key
})
:
super
(
key:
key
);
@override
_BarcodeListScannerWithControllerState
createState
()
=>
State
<
BarcodeListScannerWithController
>
createState
()
=>
_BarcodeListScannerWithControllerState
();
}
...
...
example/lib/barcode_scanner_controller.dart
View file @
e94517f
...
...
@@ -7,7 +7,7 @@ class BarcodeScannerWithController extends StatefulWidget {
const
BarcodeScannerWithController
({
Key
?
key
})
:
super
(
key:
key
);
@override
_BarcodeScannerWithControllerState
createState
()
=>
State
<
BarcodeScannerWithController
>
createState
()
=>
_BarcodeScannerWithControllerState
();
}
...
...
example/lib/barcode_scanner_pageview.dart
View file @
e94517f
...
...
@@ -6,7 +6,7 @@ class BarcodeScannerPageView extends StatefulWidget {
const
BarcodeScannerPageView
({
Key
?
key
})
:
super
(
key:
key
);
@override
_BarcodeScannerPageViewState
createState
()
=>
_BarcodeScannerPageViewState
();
State
<
BarcodeScannerPageView
>
createState
()
=>
_BarcodeScannerPageViewState
();
}
class
_BarcodeScannerPageViewState
extends
State
<
BarcodeScannerPageView
>
...
...
example/lib/barcode_scanner_returning_image.dart
View file @
e94517f
...
...
@@ -8,7 +8,7 @@ class BarcodeScannerReturningImage extends StatefulWidget {
const
BarcodeScannerReturningImage
({
Key
?
key
})
:
super
(
key:
key
);
@override
_BarcodeScannerReturningImageState
createState
()
=>
State
<
BarcodeScannerReturningImage
>
createState
()
=>
_BarcodeScannerReturningImageState
();
}
...
...
example/lib/barcode_scanner_window.dart
View file @
e94517f
...
...
@@ -9,7 +9,7 @@ class BarcodeScannerWithScanWindow extends StatefulWidget {
const
BarcodeScannerWithScanWindow
({
Key
?
key
})
:
super
(
key:
key
);
@override
_BarcodeScannerWithScanWindowState
createState
()
=>
State
<
BarcodeScannerWithScanWindow
>
createState
()
=>
_BarcodeScannerWithScanWindowState
();
}
...
...
example/lib/barcode_scanner_without_controller.dart
View file @
e94517f
...
...
@@ -6,7 +6,7 @@ class BarcodeScannerWithoutController extends StatefulWidget {
const
BarcodeScannerWithoutController
({
Key
?
key
})
:
super
(
key:
key
);
@override
_BarcodeScannerWithoutControllerState
createState
()
=>
State
<
BarcodeScannerWithoutController
>
createState
()
=>
_BarcodeScannerWithoutControllerState
();
}
...
...
example/lib/barcode_scanner_zoom.dart
View file @
e94517f
...
...
@@ -8,7 +8,7 @@ class BarcodeScannerWithZoom extends StatefulWidget {
const
BarcodeScannerWithZoom
({
Key
?
key
})
:
super
(
key:
key
);
@override
_BarcodeScannerWithZoomState
createState
()
=>
_BarcodeScannerWithZoomState
();
State
<
BarcodeScannerWithZoom
>
createState
()
=>
_BarcodeScannerWithZoomState
();
}
class
_BarcodeScannerWithZoomState
extends
State
<
BarcodeScannerWithZoom
>
...
...
Please
register
or
login
to post a comment