mobile_scanner 7.0.0-beta.3 mobile_scanner: ^7.0.0-beta.3 copied to clipboard
A universal barcode and QR code scanner for Flutter based on MLKit. Uses CameraX on Android, AVFoundation on iOS and Apple Vision & AVFoundation on macOS.
7.0.0-beta.3 #
Fix build issues on macOS
7.0.0-beta.2 #
Improvements:
- [iOS] Adds support for Swift Package Manager.
- [Apple] Fixes zoom slider
- Fixed torch at start not working
- Fixed scanWindow not being correct
- Fixed barcode overlay not being correct
Known issues:
- BoxFit.cover & BoxFit.fitHeight produces wrong width in barcodeOverlay
7.0.0-beta.1 #
This version replaces MLKit on iOS with Apple's Vision API and merges the iOS and MacOS sources. The requirement for the minimum iOS version has been relaxed back down to iOS 12.0.
There are still some problems with this build.
- Zoom slider not working
- scanWindow not working
- Flash shows briefly when starting scanner.
- Other issues, not fully tested yet.
6.0.2 #
Bugs fixed:
- Fixed a bug that prevented
analyzeImage
from actually accepting the configured formats.
Improvements:
- [iOS] Excluded the
arm64
architecture for Simulators, which is unsupported by MLKit 7.0.0.
6.0.1 #
Bugs fixed:
- Fixed a bug that would cause onDetect to not handle errors.
Improvements:
- [iOS] Excluded the
armv7
architecture, which is unsupported by MLKit 7.0.0. - Added a new
onDetectError
error handler to theMobileScanner
widget, for use withonDetect
.
6.0.0 #
BREAKING CHANGES:
- [iOS] iOS 15.5.0 is now the minimum supported iOS version.
- [iOS] Updates MLKit to version 7.0.0.
- [iOS] Updates the minimum supported XCode version to 15.3.0.
Improvements:
- [MacOS] Added the corners and size information to barcode results.
- [MacOS] Added support for
analyzeImage
. - [MacOS] Added a Privacy Manifest.
- [web] Added the size information to barcode results.
- [web] Added the video output size information to barcode capture.
- Added support for barcode formats to image analysis.
- Updated the scanner to report any scanning errors that were encountered during processing.
- Introduced a new getter
hasCameraPermission
for theMobileScannerState
. - Fixed a bug in the lifecycle handling sample. Now instead of checking
isInitialized
, the sample recommends usinghasCameraPermission
, which also guards against camera permission errors. - Updated the behavior of
returnImage
to only determine if the camera output bytes should be sent. - Updated the behavior of
BarcodeCapture.size
to always be provided when available, regardless ofreturnImage
.
Bugs fixed:
- Fixed a bug that would cause the scanner to emit an error when it was already started. Now it ignores any calls to start while it is starting.
- [MacOS] Fixed a bug that prevented the
anaylzeImage()
sample from working properly.
5.2.3 #
Deprecations:
- The
EncryptionType.none
constant has been deprecated, as its name was misleading. UseEncryptionType.unknown
instead.
Bugs fixed:
- Fixed
EncryptionType
throwing on invalidSAE
encryption type. - [web] Removed the
controls
attribute on the video preview.
Improvements:
- All enum types for barcode data (i.e. Wifi type or email type) now return
unknown
for unrecognized values.
5.2.2 #
Improvements:
- [MacOS] Adds Swift Package Manager support.
- [MacOS] Adds support for
returnImage
. - Added a new
size
property toBarcode
, that denotes the bounding box of the barcode.
Bugs fixed:
- Fixed some documentation errors for the
size
andimage
ofBarcodeCapture
. - [iOS] Fixed a bug with
returnImage
. - [Android/iOS] Adjusted the raw barcode scan value to pass the raw event data, like on MacOS.
5.2.1 #
- Updates the
package:web
dependency to use a version range.
5.2.0 #
This release requires Flutter 3.22.0 and Dart 3.4.
- [Android] Fixed a leak of the barcode scanner.
- [Android] Fixed a crash when encountering invalid numbers for the scan window.
- [Web] Migrates
package:web
to 1.0.0.
5.1.1 #
- This release fixes an issue with automatic starts in the examples.
5.1.0 #
This updates reverts a few breaking changes made in v5.0.0 in order to keep things simple.
- The
onDetect
method has been reinstated in theMobileScanner
widget, but is nullable. You can still listen toMobileScannerController.barcodes
directly by passing null to this parameter. - The
autoStart
attribute has been reinstated in theMobileScannerController
and defaults to true. However, if you want to control which camera is used on start, or you want to manage the lifecycle yourself, you should set autoStart to false and manually callMobileScannerController.start({CameraFacing? cameraDirection})
. - The
controller
is no longer required in theMobileScanner
widget. However if provided, the user should take care of disposing it. - [Android] Revert Gradle 8 back to Gradle 7, to be inline with most Flutter plugins and prevent build issues.
- [Android] Revert Kotlin back from 1.9 to 1.7 to be inline with most Flutter plugins. Special 1.9 functionality has been refactored to be compatible with 1.7.
5.0.2 #
Bugs fixed:
- Fixed a crash when the controller is disposed while it is still starting. #1036 (thanks @EArminjon !)
- Fixed an issue that causes the initial torch state to be out of sync.
Improvements:
- Updated the lifeycle code sample to handle not-initialized controllers.
5.0.1 #
Improvements:
- Adjusted the platform checks to use the defaultTargetPlatform API, so that tests can use the correct platform overrides.
5.0.0 #
This major release contains all the changes from the 5.0.0 beta releases, along with the following changes:
Improvements:
- [Android] Remove the Kotlin Standard Library from the dependencies, as it is automatically included in Kotlin 1.4+
5.0.0-beta.3 #
BREAKING CHANGES:
- Flutter 3.19.0 is now required.
- [iOS] iOS 12.0 is now the minimum supported iOS version.
- [iOS] Adds a Privacy Manifest.
Bugs fixed:
- Fixed an issue where the camera preview and barcode scanner did not work the second time on web.
Improvements:
- [web] Migrates to extension types. (thanks @koji-1009 !)
5.0.0-beta.2 #
Bugs fixed:
- Fixed an issue where the scan window was not updated when its size was changed. (thanks @navaronbracke !)
5.0.0-beta.1 #
BREAKING CHANGES:
- The
width
andheight
ofBarcodeCapture
have been removed, in favor ofsize
. - The
raw
attribute is nowObject?
instead ofdynamic
, so that it participates in type promotion. - The
MobileScannerArguments
class has been removed from the public API, as it is an internal type. - The
cameraFacingOverride
named argument for thestart()
method has been renamed tocameraDirection
. - The
analyzeImage
function now correctly returns aBarcodeCapture?
instead of a boolean. - The
formats
attribute of theMobileScannerController
is now non-null. - The
MobileScannerState
enum has been renamed toMobileScannerAuthorizationState
. - The various
ValueNotifier
s for the camera state have been removed. Use thevalue
of theMobileScannerController
instead. - The
hasTorch
getter has been removed. Instead, use the torch state of the controller's value. TheTorchState
enum now provides a new value for unavailable flashlights. - The
autoStart
attribute has been removed from theMobileScannerController
. The controller should be manually started on-demand. - A controller is now required for the
MobileScanner
widget. - The
onPermissionSet
,onStart
andonScannerStarted
methods have been removed from theMobileScanner
widget. Instead, awaitMobileScannerController.start()
. - The
startDelay
has been removed from theMobileScanner
widget. Instead, use a delay between manual starts of one or more controllers. - The
onDetect
method has been removed from theMobileScanner
widget. Instead, listen toMobileScannerController.barcodes
directly. - The
overlay
widget of theMobileScanner
has been replaced by a new property,overlayBuilder
, which provides the constraints for the overlay. - The torch can no longer be toggled on the web, as this is only available for image tracks and not video tracks. As a result the torch state for the web will always be
TorchState.unavailable
. - The zoom scale can no longer be modified on the web, as this is only available for image tracks and not video tracks. As a result, the zoom scale will always be
1.0
.
Improvements:
- The
MobileScannerController
is now a ChangeNotifier, withMobileScannerState
as its model. - The web implementation now supports alternate URLs for loading the barcode library.
4.0.1 #
Bugs fixed:
- [iOS] Fixed a crash with a nil capture session when starting the camera. (thanks @navaronbracke !)
4.0.0 #
BREAKING CHANGES:
- [Android] compileSdk has been upgraded to version 34.
- [Android] Java version has been upgraded to version 17.
3.5.7 #
Improvements:
- Updated js dependency together with other dependencies.
- Reverted compileSdk version to 33 on Android. This update will be released under version 4.0.0.
3.5.6 #
Bugs fixed:
- [web] Fixed a crash with the ZXing barcode format (thanks @hazzo!)
- [web] Fixed stream controller not being closed on web.
- [iOS] Fixed a crash with unsupported torch modes. (thanks @navaronbracke !)
- [iOS] Fixed a crash with the camera discovery session. (thanks @navaronbracke !)
Improvements:
- Upgrade camera dependencies on Android.
- Upgrade compileSdk version to 34 on Android.
- Add numberOfCameras parameter in MobileScannerArguments callback, which shows how many cameras there are available on Android.
- [Android] Migrated to ResolutionSelector with ResolutionStrategy. You can opt in into the new selector by setting [useNewCameraSelector] in the [MobileScannerController] to true.
3.5.5 #
Bugs fixed:
- Fixed a bug where the scanner would get stuck after denying permissions on Android. (thanks @navaronbracke !)
3.5.4 #
Bugs fixed:
- Fixed a bug with an implicit conversion to integer for the scan timeout for iOS. (thanks @EArminjon !)
3.5.2 #
Improvements:
- Updated to
play-services-mlkit-barcode-scanning
version 18.3.0
Bugs fixed:
- Fixed the
updateScanWindow()
function not completing on Android and MacOS. (thanks @navaronbracke !) - Fixed some camera access issues, when the camera could have been null on Android. (thanks @navaronbracke !)
- Fixed a crash on Android when there is no camera. (thanks @navaronbracke !)
- Fixed a bug with the
noDuplicates
detection speed. (thanks @pgeof !) - Fixed a synchronization issue for the torch state. (thanks @navaronbracke !)
3.5.1 #
Improvements:
- The
type
of anAddress
is now non-null. - The
type
of anEmail
is now non-null. - The
phoneNumber
of anSMS
is now non-null. - The
latitude
andlongitude
of aGeoPoint
are now non-null. - The
phones
andurls
ofContactInfo
are now non-null. - The
url
of aUrlBookmark
is now non-null. - The
type
ofPhone
is now non-null. - The
width
andheight
ofBarcodeCapture
are now non-null. - The
BarcodeCapture
class now exposes asize
. - The list of
corners
of aBarcode
is now non-null.
Bugs fixed:
- Fixed the default values for the
format
andtype
arguments of the Barcode constructor. These now useBarcodeFormat.unknown
andBarcodeType.unknown
, rather thanBarcodeFormat.ean13
andBarcodeType.text
. (thanks @navaronbracke !) - Fixed messages not being sent on the main thread for Android, iOS and MacOS. (thanks @navaronbracke !)
3.5.0 #
NOTE: From this version onwards, mobile_scanner
requires Android projects to have a compileSdk
of 34 (Android 14) or higher
New Features:
- Added the option to switch between bundled and unbundled MLKit for Android. (thanks @woolfred !)
- Added the option to specify the camera resolution for Android. (thanks @EArminjon !)
- Added a sample with a scanner overlay. (thanks @Spyy004 !)
Bugs fixed:
- Fixed the scan window calculation taking into account the widget coordinates, instead of the screen coordinates. (thanks @jlin5 !)
- Fixed the scan window calculation returning wrong results. (thanks @MBulli !)
- Fixed the BarcodeCapture format on MacOS. (thanks @ryanduffyne !)
- Fixed the timeout for scanning on MacOS. (thanks @ryanduffyne !)
- Fixed Android builds failing by downgrading from Kotlin 1.9.10 to 1.7.22. (thanks @vbuberen !)
- Fixed images on iOS being rotated, resulting in bad detection rates. (thanks @EArminjon !)
- Fixed scan timeout not working on iOS. (thanks @navaronbracke !)
- Fixed a crash on iOS when the device is nil. (thanks @navaronbracke !)
- Fixed a case of an unhandled exception when starting the scanner. (thanks @navaronbracke !)
Improvements:
- Improved MacOS memory footprint by using a background queue. (thanks @ryanduffyne !)
3.4.1 #
- Changed MediaQuery.sizeOf(context) to of(context).size for compatibility with older Flutter versions.
3.4.0 #
New Features:
- This PR adds an option to add an overlay to the scanner which is only visible when the scanner has started. (thanks @svenopdehipt !)
Improvements:
-
fix a bug in the static interop binding of PhotoCapabilities (thanks @navaronbracke !)
-
[Web] add the corners from the ZXing result to the barcode on web (thanks @navaronbracke !)
-
update the example app web entrypoint to the latest template by running flutter create . --platforms=web (thanks @navaronbracke !)
-
add better handling for the case where scanning barcodes is unsupported (for example a desktop running the browser sample) (thanks @navaronbracke !)
-
[Web] fix the permission denied handling on the web, by using the NotAllowedError error message as defined by MDN (thanks @navaronbracke !)
-
add app bars with back buttons to the example app (so that you can go back easily) (thanks @navaronbracke !)
-
[iOS] Implements a fix from issue iOS After first QR Code Scan, When Scanning again, First Image stays on Camera buffer (thanks @FlockiiX !)
-
By dynamically adjusting the positioning and scaling of the scan window relative to the texture, the package ensures optimal coverage and alignment for scanning targets. (thanks @sdkysfzai !)
-
In the original package, If there are multiple barcode/qrcodes in the screen, the scan would randomly pick up any barcode/qrcode that shows in the screen, This upgrade fixes it and picks on the qrcode/barcode that is in the center of the camera. (thanks @sdkysfzai !)
-
In the original package if you changed the camera size, it would still pick scans even if the barcode are not shown in the screen, This issue is also fixed in the upgraded packaged. (thanks @sdkysfzai !)
-
[iOS] This removes a threading warning (and potentially jank). (thanks @ened !)
-
[Android] fix(ScanImage): fix android image result is not correct format and orientation (thanks @phanbaohuy96 !)
-
[iOS] Respect detectionTimeout on iOS devices, instead of arbitrarily waiting 10 frames (thanks @jorgenpt !)
-
[iOS] Don't start a second scan until the first one is done, to keep memory usage more fixed if the device is slow (thanks @jorgenpt !)
-
[Android] This PR ensure that the camera is not stopped in the callback. (thanks @g123k !)
-
[macOS] Fix some macOS build errors (thanks @svenopdehipt !)
-
[Android] Fixed an issue which caused the App Lifecycle States to not work correctly on Android. (thanks @androi7 !)
3.3.0 #
Bugs fixed:
- Fixed bug where onDetect method was being called multiple times
- [Android] Fix Gradle 8 compatibility by adding the
namespace
attribute to the build.gradle.
Improvements:
- [Android] Upgraded camera2 dependency
- Added zoomScale value notifier in MobileScannerController for the application to know the zoom scale value set actually. The value is notified from the native SDK(CameraX/AVFoundation).
- Added resetZoomScale() in MobileScannerController to reset zoom ratio with 1x. Both Android and iOS, if the device have ultra-wide camera, calling setZoomScale with small value causes to use ultra-wide camera and may be diffcult to detect barcodes. resetZoomScale() is useful to use standard camera with zoom 1x. setZoomScale() with the specific value can realize same effect, but added resetZoomScale for avoiding floating point errors. The application can know what zoom scale value is selected actually by subscribing zoomScale above after calling resetZoomScale.
- [iOS] Call resetZoomScale while starting scan. Android camera is initialized with a zoom of 1x, whereas iOS is initialized with the minimum zoom value, which causes to select the ultra-wide camera unintentionally ([iOS] Impossible to focus and scan the QR code due to picking the wide back camera #554). Fixed this issue by calling resetZoomScale
- [iOS] Remove zoom animation with ramp function to match Android behavior.
3.2.0 #
Improvements:
- [iOS] Updated GoogleMLKit/BarcodeScanning to 4.0.0
- [Android] Updated com.google.mlkit:barcode-scanning from 17.0.3 to 17.1.0
Bugs fixed:
- Fixed onDetect not working with analyzeImage when autoStart is false in MobileScannerController
- [iOS] Explicit returned type for compactMap
3.1.1 #
Bugs fixed:
- [iOS] Fixed a bug that caused a crash when switching from camera.
3.1.0 #
Improvements:
- [iOS] No longer automatically focus on faces.
- [iOS] Fixed build error.
- [Web] Waiting for js libs to load.
- Do not returnImage if not specified.
- Added raw data in barcode object.
- Fixed several bugs.
3.0.0 #
This big release contains all improvements from the beta releases. In addition to that, this release contains:
Improvements:
- Fixed an issue in which the scanner would freeze if two scanner widgets where placed in a page view, and the paged was swiped. An example has been added in the example app. You need to set startDelay: true if used in a page view.
- [Web] Automatically inject js libraries.
- [macOS] The minimum build version is now macOS 10.14 in according to the latest Flutter version.
- [Android] Fixed an issue in which the scanWindow would remain even after disposing the scanner.
- Updated dependencies.
3.0.0-beta.4 #
Fixes:
- Fixes a permission bug on Android where denying the permission would cause an infinite loop of permission requests.
- Updates the example app to handle permission errors with the new builder parameter. Now it no longer throws uncaught exceptions when the permission is denied.
- Updated several dependencies
Features:
- Added a new
errorBuilder
to theMobileScanner
widget that can be used to customize the error state of the preview. (Thanks @navaronbracke !)
3.0.0-beta.3 #
Deprecated:
- The
onStart
method has been renamed toonScannerStarted
. - The
onPermissionSet
argument of theMobileScannerController
is now deprecated.
BREAKING CHANGES:
MobileScannerException
now uses anerrorCode
instead of amessage
.MobileScannerException
now contains additional details from the original error.- Refactored
MobileScannerController.start()
to throwMobileScannerException
s with consistent error codes, rather than string messages. To handle permission errors, consider catching the result ofMobileScannerController.start()
. - The
autoResume
attribute has been removed from theMobileScanner
widget. The controller already automatically resumes, so it had no effect. - Removed
MobileScannerCallback
andMobileScannerArgumentsCallback
typedef. - [Web] Replaced
jsqr
library withzxing-js
for full barcode support.
Improvements:
- Toggling the device torch now does nothing if the device has no torch, rather than throwing an error.
- Removed
called stop while already stopped
messages.
Features:
- You can now provide a
scanWindow
to theMobileScanner()
widget. - You can now draw an overlay over the scanned barcode. See the barcode scanner window in the example app for more information.
- Added a new
placeholderBuilder
function to theMobileScanner
widget to customize the preview placeholder. - Added
autoStart
parameter to MobileScannerController(). If set to false, controller won't start automatically. - Added
hasTorch
function on MobileScannerController(). After starting the controller, you can check if the device has a torch. - [iOS] Support
torchEnabled
parameter from MobileScannerController() on iOS - [Web] Added ability to use custom barcode scanning js libraries
by extending
WebBarcodeReaderBase
class and changingbarCodeReader
property inMobileScannerWebPlugin
Fixes:
- Fixes the missing gradle setup for the Android project, which prevented gradle sync from working.
- Fixes
MobileScannerController.stop()
throwing when already stopped. - Fixes
MobileScannerController.toggleTorch()
throwing if the device has no torch. Now it does nothing if the torch is not available. - Fixes a memory leak where the
MobileScanner
would keep listening to the barcode events. - Fixes the
MobileScanner
preview depending on all attributes ofMediaQueryData
. Now it only depends on its layout constraints. - Fixed a potential crash when the scanner is restarted due to the app being resumed.
- [iOS] Fix crash when changing torch state
3.0.0-beta.2 #
BREAKING CHANGES:
- The arguments parameter of onDetect is removed. The data is now returned by the onStart callback in the MobileScanner widget.
- onDetect now returns the object BarcodeCapture, which contains a List of barcodes and, if enabled, an image.
- allowDuplicates is removed and replaced by MobileScannerSpeed enum.
- onPermissionSet in MobileScanner widget is deprecated and will be removed. Use the onPermissionSet onPermissionSet callback in MobileScannerController instead.
- [iOS] The minimum deployment target is now 11.0 or higher.
Features:
- The returnImage is working for both iOS and Android. You can enable it in the MobileScannerController. The image will be returned in the BarcodeCapture object provided by onDetect.
- You can now control the DetectionSpeed, as well as the timeout of the DetectionSpeed. For more info see the DetectionSpeed documentation. This replaces the allowDuplicates function.
Other improvements:
- Both the [iOS] and [Android] codebases have been refactored completely.
- [iOS] Updated POD dependencies
3.0.0-beta.1 #
BREAKING CHANGES:
- [Android] SDK updated to SDK 33.
Features:
- [Web] Add binaryData for raw value.
- [iOS] Captures the last scanned barcode with Barcode.image.
- [iOS] Add support for multiple formats on iOS with BarcodeScannerOptions.
- Add displayValue which returns barcode value in a user-friendly format.
- Add autoResume option to MobileScannerController which automatically resumes the camera when the application is resumed
Other changes:
- [Android] Revert camera2 dependency to stable release
- [iOS] Update barcode scanning library to latest version
- Several minor code improvements
2.0.0 #
BREAKING CHANGES:
This version is only compatible with flutter 3.0.0 and later.
1.1.2-play-services #
This version uses the MLKit play-services model on Android in order to save space. With the example app, this version reduces the release version from 14.9MB to 7MB. More information: https://developers.google.com/ml-kit/vision/barcode-scanning/android
1.1.2 #
This version is the last version that will run on Flutter 2.x
Bugfixes:
- Changed onDetect to be mandatory.
1.1.1-play-services #
This version uses the MLKit play-services model on Android in order to save space. With the example app, this version reduces the release version from 14.9MB to 7MB. More information: https://developers.google.com/ml-kit/vision/barcode-scanning/android
1.1.1 #
Bugfixes:
- Add null checks for Android.
- Update camera dependency for Android.
- Fix return type for analyzeImage.
- Add fixes for Flutter 3.
1.1.0 #
Bugfixes:
- Fix for 'stream already listened to' exception.
- Fix building on Android with latest Flutter version.
- Add several WEB improvements.
- Upgraded several dependencies.
1.0.0 #
BREAKING CHANGES:
This version adds a new allowDuplicates option which now defaults to FALSE. this means that it will only call onDetect once after a scan. If you still want duplicates, you can set allowDuplicates to true. This also means that you don't have to check for duplicates yourself anymore.
New features:
- We now have web support! Keep in mind that only QR codes are supported right now.
Bugfixes:
- Fixed hot reload not working.
- Fixed Navigator.of(context).pop() not working in the example app due to duplicate MaterialApp declaration.
- Fixed iOS MLKit version not resolving the latest version.
- Updated all dependencies
0.2.0 #
You can provide a path to controller.analyzeImage(path) in order to scan a local photo from the gallery! Check out the example app to see how you can use the image_picker plugin to retrieve a photo from the gallery. Please keep in mind that this feature is only supported on Android and iOS.
Another feature that has been added is a format selector! Just keep in mind that iOS for now only supports 1 selected barcode.
0.1.2 #
0.1.1 #
mobile_scanner is now compatible with sdk >= 2.12 and flutter >= 2.2.0
0.1.0 #
We now have MacOS support using Apple's Vision framework! Keep in mind that for now, only the raw value of the barcode object is supported.
Bugfixes:
- Fixed a crash when dispose is called in a overridden method. #5
0.0.3 #
- Added some API docs and README
- Updated the example app
0.0.2 #
Fixed on iOS:
- You can now set the torch
- You can select the camera you want to use
0.0.1 #
Initial release! Things working on Android:
- Scanning barcodes using the latest version of MLKit and CameraX!
- Switching camera's
- Toggling of the torch (flash)
Things working on iOS:
- Scanning barcodes using the latest version of MLKit and AVFoundation!