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-11-09 11:08:18 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
726de01d35876532e82e4ed98ba6a36fc7420735
726de01d
1 parent
87d0bf71
remove unused ticker providers
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
example/lib/barcode_scanner_controller.dart
example/lib/barcode_scanner_zoom.dart
example/lib/barcode_scanner_controller.dart
View file @
726de01
...
...
@@ -14,8 +14,7 @@ class BarcodeScannerWithController extends StatefulWidget {
}
class
_BarcodeScannerWithControllerState
extends
State
<
BarcodeScannerWithController
>
with
SingleTickerProviderStateMixin
{
extends
State
<
BarcodeScannerWithController
>
{
BarcodeCapture
?
barcode
;
final
MobileScannerController
controller
=
MobileScannerController
(
...
...
example/lib/barcode_scanner_zoom.dart
View file @
726de01
...
...
@@ -13,8 +13,7 @@ class BarcodeScannerWithZoom extends StatefulWidget {
State
<
BarcodeScannerWithZoom
>
createState
()
=>
_BarcodeScannerWithZoomState
();
}
class
_BarcodeScannerWithZoomState
extends
State
<
BarcodeScannerWithZoom
>
with
SingleTickerProviderStateMixin
{
class
_BarcodeScannerWithZoomState
extends
State
<
BarcodeScannerWithZoom
>
{
BarcodeCapture
?
barcode
;
final
MobileScannerController
controller
=
MobileScannerController
(
...
...
Please
register
or
login
to post a comment