PackageTrack
Sign in Get early access

mobile_scanner

A universal Flutter barcode and QR code scanner using CameraX/ML Kit for Android, AVFoundation/Apple Vision for iOS & macOS, and ZXing for web.

7.4.0 1000K downloads/mo #39 most downloaded on pub.dev juliansteenbakker/mobile_scanner

What this package is like to depend on

Last release 1 months ago

20 Jul 2026

Release timing varies

gaps range from 9 days to 5 months

Nearly every release is documented

notes for 58 of 60 stable releases

3 versions withdrawn

withdrawn after publishing

5 years old

84 releases · first in 2022

10 releases in the last 12 months

see the full history below

Release timeline

84 releases · Feb 2022 to Jul 2026
2023 2024 2025 2026
Release Pre-release Withdrawn

Releases

latest 60 of 84
  1. 7.4.0 20 Jul 2026
    Release notes

    7.4.0 (2026-07-19)

    New features

    • Added getBestCloseRangeScanningLens() to determine which camera lens is best suited for scanning barcodes at close range (e.g. the ultra-wide/macro lens on newer iPhones). Returns null if no camera is available for the requested facing direction.

    Improvements

    • Added an optional facing filter to getSupportedLenses, to restrict results to front or back cameras.

    Bug Fixes

    • [Android] Fixed getSupportedLenses reporting physical sub-cameras that CameraX can't actually select, which caused a crash when switching to one.
    • [Android] Starting the scanner with an unavailable lensType now reports an error instead of silently falling back to the default camera.
    Open source →
    Release notes

    New features

    • Added getBestCloseRangeScanningLens() to determine which camera lens is best suited for scanning barcodes at close range (e.g. the ultra-wide/macro lens on newer iPhones). Returns null if no camera is available for the requested facing direction.

    Improvements

    • Added an optional facing filter to getSupportedLenses, to restrict results to front or back cameras.

    Bug Fixes

    • [Android] Fixed getSupportedLenses reporting physical sub-cameras that CameraX can't actually select, which caused a crash when switching to one.
    • [Android] Starting the scanner with an unavailable lensType now reports an error instead of silently falling back to the default camera.
    Open source →
  2. 7.3.0 16 Jul 2026
    Release notes

    New features

    • [Web] Added support for multiple barcode detection backends, selectable via MobileScannerPlatform.instance.setWebBarcodeReader(WebBarcodeReader reader):
      • WebBarcodeReader.auto (default), uses the native BarcodeDetector API when available, and falls back to zxing-wasm otherwise.
      • WebBarcodeReader.barcodeDetector, uses the W3C Shape Detection API (Chrome 83+, Edge 83+, Safari 17+). No external library is loaded.
      • WebBarcodeReader.zxingWasm, uses zxing-wasm (ZXing C++ compiled to WebAssembly), which works in all modern browsers including Firefox.
      • WebBarcodeReader.zxingJs, the legacy ZXing JavaScript backend, retained for backward compatibility.
    • [Web] Added MobileScannerPlatform.instance.activeWebReader to query which backend is currently active.
    • Added BarcodeFormat.maxiCode and BarcodeFormat.microQrCode, supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends.
    • Added BarcodeFormat.dataBar, BarcodeFormat.dataBarExpanded and BarcodeFormat.dataBarLimited (GS1 DataBar / RSS-14), supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends (DataBar and DataBar Expanded only for zxingJs), and by Apple Vision on iOS 15+ / macOS 12+.

    Improvements

    • [Web] Bumped @zxing/library (the WebBarcodeReader.zxingJs backend) from 0.21.3 to 0.23.0.

    Bug Fixes

    • Fixed disposing a MobileScannerController also disposing the platform resources of a different controller. Disposing a controller that does not hold the active camera session no longer tears down the camera of the controller that does. (#1631)
    • Fixed a subscription leak where a controller that was disposed without being stopped kept its internal event stream subscriptions alive.
    • Fixed an issue when running the plugin using AGP 9.
    Open source →
    Release notes

    New features

    • [Web] Added support for multiple barcode detection backends, selectable via MobileScannerPlatform.instance.setWebBarcodeReader(WebBarcodeReader reader):
      • WebBarcodeReader.auto (default), uses the native BarcodeDetector API when available, and falls back to zxing-wasm otherwise.
      • WebBarcodeReader.barcodeDetector, uses the W3C Shape Detection API (Chrome 83+, Edge 83+, Safari 17+). No external library is loaded.
      • WebBarcodeReader.zxingWasm, uses zxing-wasm (ZXing C++ compiled to WebAssembly), which works in all modern browsers including Firefox.
      • WebBarcodeReader.zxingJs, the legacy ZXing JavaScript backend, retained for backward compatibility.
    • [Web] Added MobileScannerPlatform.instance.activeWebReader to query which backend is currently active.
    • Added BarcodeFormat.maxiCode and BarcodeFormat.microQrCode, supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends.
    • Added BarcodeFormat.dataBar, BarcodeFormat.dataBarExpanded and BarcodeFormat.dataBarLimited (GS1 DataBar / RSS-14), supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends (DataBar and DataBar Expanded only for zxingJs), and by Apple Vision on iOS 15+ / macOS 12+.

    Improvements

    • [Web] Bumped @zxing/library (the WebBarcodeReader.zxingJs backend) from 0.21.3 to 0.23.0.

    Bug Fixes

    • Fixed disposing a MobileScannerController also disposing the platform resources of a different controller. Disposing a controller that does not hold the active camera session no longer tears down the camera of the controller that does. (#1631)
    • Fixed a subscription leak where a controller that was disposed without being stopped kept its internal event stream subscriptions alive.
    • Fixed an issue when running the plugin using AGP 9.
    Open source →
  3. 7.2.1 14 Jul 2026
    Release notes

    Improvements

    • [Web] The preferred camera device ID is now persisted in localStorage and reused on the next start.
    • [Web] Focus, exposure, and white-balance constraints are now applied automatically when supported by the browser (Image Capture API).
    • [Web] The camera now uses StartOptions.cameraResolution as the ideal resolution, falling back to 1920×1080.
    • [Web] The barcode overlay is now mirrored when the video preview is mirrored (e.g. front camera).
    • [Web] The scan window is now supported. Barcodes detected outside the scan window are ignored.
    • [Android] Laid groundwork for Android Gradle Plugin (AGP) 9 compatibility by conditionally applying the kotlin-android plugin only on AGP versions below 9, while remaining compatible with older AGP versions.

    Bug Fixes

    • [Apple] Fixed a race condition in captureOutput where latestBuffer was read on a background thread after being deallocated on the main thread, causing a crash in VTCreateCGImageFromCVPixelBuffer.
    • [Apple] Fixed an issue where captureOutput was being processed on the main thread, causing overheating issues on device.
    • [Android] Fixed start() not resuming the camera after pause(), caused by the isPaused flag being reset before the paused-state check.
    • [Android] Fixed ProGuard/R8 full mode (default since AGP 8.0) stripping or obfuscating MLKit classes by widening the keep rule to com.google.mlkit.**.
    Open source →
    Release notes

    Improvements

    • [Web] The preferred camera device ID is now persisted in localStorage and reused on the next start.
    • [Web] Focus, exposure, and white-balance constraints are now applied automatically when supported by the browser (Image Capture API).
    • [Web] The camera now uses StartOptions.cameraResolution as the ideal resolution, falling back to 1920×1080.
    • [Web] The barcode overlay is now mirrored when the video preview is mirrored (e.g. front camera).
    • [Web] The scan window is now supported. Barcodes detected outside the scan window are ignored.
    • [Android] Laid groundwork for Android Gradle Plugin (AGP) 9 compatibility by conditionally applying the kotlin-android plugin only on AGP versions below 9, while remaining compatible with older AGP versions.

    Bug Fixes

    • [Apple] Fixed a race condition in captureOutput where latestBuffer was read on a background thread after being deallocated on the main thread, causing a crash in VTCreateCGImageFromCVPixelBuffer.
    • [Apple] Fixed an issue where captureOutput was being processed on the main thread, causing overheating issues on device.
    • [Android] Fixed start() not resuming the camera after pause(), caused by the isPaused flag being reset before the paused-state check.
    • [Android] Fixed ProGuard/R8 full mode (default since AGP 8.0) stripping or obfuscating MLKit classes by widening the keep rule to com.google.mlkit.**.
    Open source →
  4. 7.2.0 18 Feb 2026
    Release notes

    Highlights

    • Added support for switching between lens types (normal, wide, zoom) using the switchCamera() method with ToggleLensType or SelectCamera options.
    • Added rawDecodedBytes field to Barcode which replaces Barcode.rawBytes. On Apple platforms, this returns a DecodedVisionBarcodeBytes containing bytes (decoded payload, without header/padding) and rawBytes (full raw payload, available on iOS 17.0+ / macOS 14.0+). On Android and web, this returns a DecodedBarcodeBytes containing bytes.

    Improvements

    • [Android] Migrated barcode bounding box from boundingBox to cornerPoints for more accurate scan window detection.
    • Added support for ITF-Two-of-Five.
    • Added constants for testing the method channel methods in MobileScannerMethods and MobileScannerEvents.
    • The global method calculateBoxFitRatio() is now deprecated.

    Bug Fixes

    • [Android] Fixed incorrect texture size on orientation change.
    • [Android] Fixed a bug where the isPaused flag was not reset when start() was called.
    • [Android] Fixed imageAnalysis not being unbound on dispose.
    • [Android] Fixed an issue where the app orientation handling was not respecting auto-rotate settings
    • [Apple] Fixed rawBytes returning incorrect data for barcodes containing non-ASCII characters (e.g. ø). For QR codes, bytes are now extracted directly from the error-corrected bit stream via CIQRCodeDescriptor, bypassing the Vision string API entirely. For Aztec, DataMatrix, PDF417 and linear formats, the ISO-Latin-1 round-trip is used to recover the original bytes from payloadStringValue.
    • [Apple] Fixed displayValue returning a garbled Latin-1 string (e.g. hellø) for barcodes with non-ASCII UTF-8 content. It is now correctly decoded to UTF-8 (e.g. hellø).
    • [Apple] Fixed a bug where the barcode type results did not have a value.
    • [Apple] Fixed camera rotating, even when rotation is locked.
    • [macOS] Fixed barcode overlay text displaying upside down.
    • Fixed barcode overlay rendering at wrong position after orientation change.
    • Fixed a bug where taps were ignored on the scanner widget.
    • Fixed a bug where a controller that was only disposed would throw an incorrect error code.
    Open source →
    Release notes

    Highlights

    • Added support for switching between lens types (normal, wide, zoom) using the switchCamera() method with ToggleLensType or SelectCamera options.
    • Added rawDecodedBytes field to Barcode which replaces Barcode.rawBytes. On Apple platforms, this returns a DecodedVisionBarcodeBytes containing bytes (decoded payload, without header/padding) and rawBytes (full raw payload, available on iOS 17.0+ / macOS 14.0+). On Android and web, this returns a DecodedBarcodeBytes containing bytes.

    Improvements

    • [Android] Migrated barcode bounding box from boundingBox to cornerPoints for more accurate scan window detection.
    • Added support for ITF-Two-of-Five.
    • Added constants for testing the method channel methods in MobileScannerMethods and MobileScannerEvents.
    • The global method calculateBoxFitRatio() is now deprecated.

    Bug Fixes

    • [Android] Fixed incorrect texture size on orientation change.
    • [Android] Fixed a bug where the isPaused flag was not reset when start() was called.
    • [Android] Fixed imageAnalysis not being unbound on dispose.
    • [Android] Fixed an issue where the app orientation handling was not respecting auto-rotate settings
    • [Apple] Fixed rawBytes returning incorrect data for barcodes containing non-ASCII characters (e.g. ø). For QR codes, bytes are now extracted directly from the error-corrected bit stream via CIQRCodeDescriptor, bypassing the Vision string API entirely. For Aztec, DataMatrix, PDF417 and linear formats, the ISO-Latin-1 round-trip is used to recover the original bytes from payloadStringValue.
    • [Apple] Fixed displayValue returning a garbled Latin-1 string (e.g. hellø) for barcodes with non-ASCII UTF-8 content. It is now correctly decoded to UTF-8 (e.g. hellø).
    • [Apple] Fixed a bug where the barcode type results did not have a value.
    • [Apple] Fixed camera rotating, even when rotation is locked.
    • [macOS] Fixed barcode overlay text displaying upside down.
    • Fixed barcode overlay rendering at wrong position after orientation change.
    • Fixed a bug where taps were ignored on the scanner widget.
    • Fixed a bug where a controller that was only disposed would throw an incorrect error code.

    7.1.4

    • [Apple] Fixed crash on iPhone 17 when starting MobileScanner by checking available pixel formats before setting video output settings. (#1578)

    7.1.3

    • Overlay: Updated BarcodePainter to receive deviceOrientation and dynamically adjust cameraPreviewSize, fixing barcode overlay misalignment during device rotation changes .

    • [Android] Refactored orientation detection to use OrientationEventListener instead of BroadcastReceiver for ACTION_CONFIGURATION_CHANGED, ensuring physical device orientation is captured correctly and preventing unwanted screen rotations on MobileScanner initialization .

    • [Android] Changed minSDK from 21 to 23 in line with Flutter requirements.

    • [Android] Removed deprecated renderscript api's, improved performance for analysis.

    • [Apple] Prevent half-stopped camera state causing false ALREADY_STARTED.

    • [Apple] Fixed a bug where invalid images would cause crashes when processing them with CoreVideo.

    Open source →
  5. 7.1.4 12 Dec 2025

    Nothing published for this version

  6. 7.1.3 24 Oct 2025
    Release notes
    • Overlay: Updated BarcodePainter to receive deviceOrientation and dynamically adjust cameraPreviewSize, fixing barcode overlay misalignment during device rotation changes .

    • [Android] Refactored orientation detection to use OrientationEventListener instead of BroadcastReceiver for ACTION_CONFIGURATION_CHANGED, ensuring physical device orientation is captured correctly and preventing unwanted screen rotations on MobileScanner initialization .

    • [Android] Changed minSDK from 21 to 23 in line with Flutter requirements.

    • [Android] Removed deprecated renderscript api's, improved performance for analysis.

    • [Apple] Prevent half-stopped camera state causing false ALREADY_STARTED.

    • [Apple] Fixed a bug where invalid images would cause crashes when processing them with CoreVideo.

    Open source →
  7. 7.1.2 23 Sep 2025
    Release notes
    • Fixed an issue with the initialZoom parameter.
    Open source →
    Release notes
    • Fixed an issue with the initialZoom parameter.
    Open source →
  8. 7.1.1 23 Sep 2025
    Release notes
    • Fixed missing import of 'package:meta/meta.dart' on older Flutter sdk's
    Open source →
    Release notes
    • Fixed missing import of 'package:meta/meta.dart' on older Flutter sdk's
    Open source →
  9. 7.1.0 23 Sep 2025
    Release notes

    Highlights

    • [Apple & Android] Added tap to focus functionality. You can enable it in the MobileScanner widget.
    • [Apple & Android] You can now set the initial zoom factor using the initialZoom parameter in the startOptions.

    Bug Fixes and Improvements

    • [iOS] Increased minimum os level to 13 due to Flutter requirements.
    • [macOS] Increased minimum os level to 10.15 due to Flutter requirements.
    • [Android] Update to Java 17, and update other dependencies.
    • [Apple] Improved fallback for when camera is not found.
    • Added a Barcode.scaleCorners() method.
    Open source →
    Release notes

    Highlights

    • [Apple & Android] Added tap to focus functionality. You can enable it in the MobileScanner widget.
    • [Apple & Android] You can now set the initial zoom factor using the initialZoom parameter in the startOptions.

    Bug Fixes and Improvements

    • [iOS] Increased minimum os level to 13 due to Flutter requirements.
    • [macOS] Increased minimum os level to 10.15 due to Flutter requirements.
    • [Android] Update to Java 17, and update other dependencies.
    • [Apple] Improved fallback for when camera is not found.
    • Added a Barcode.scaleCorners() method.
    Open source →
  10. 7.0.1 04 Jun 2025
    Release notes
    • Added error handling for when MobileScannerController.start is called without an active MobileScanner widget.
    Open source →
  11. 7.0.0 02 May 2025
    Release notes

    This version finalizes all changes from the beta and release candidate cycles and introduces major improvements, bug fixes, and breaking changes.

    BREAKING CHANGES

    • Requires Flutter 3.29.0 or higher.
    • The initial camera facing direction in MobileScannerState is now CameraFacing.unknown.
    • Removed the deprecated EncryptionType.none. Use EncryptionType.unknown instead.
    • The errorBuilder and placeholderBuilder no longer have a Widget argument.
    • Removed the MobileScannerErrorBuilder typedef.

    Highlights

    • [iOS/macOS] Migrated to the Vision API with a unified Apple codebase.
    • [iOS] Minimum iOS version changed from 15 to 12.
    • [Android] Removed dependency on kotlin-bom and updated CameraX and camera-camera2 dependencies.
    • Support for pause/resume functionality across platforms.
    • MobileScannerErrorCode now includes readable error messages in debug mode.
    • Hot-restart during development now works correctly.
    • Added overlay widgets for barcode and scan window visualization.
    • Exposed new API parameters like autoZoom, invertImage, and lifecycle handling.

    Bug Fixes and Improvements

    • [Apple]
      • Fixed rotation, orientation, and zoom behavior.
      • Resolved incorrect barcode overlay dimensions and corner coordinates.
      • Fixed a crash when stopping the camera with a nil device.
      • Fixed build issues including optional chaining on non-optional values.
    • [Android]
      • Fixed rotation and orientation issues.
      • Resolved timing issues in SurfaceProducer with Kotlin 1.8+.
      • Fixed resource leaks and improved image analysis compatibility.
      • Improved logging behavior (CameraX logs only errors).
    • [macOS]
      • Fixed mirrored images and build issues.
    • [Web]
      • Fixed barcode overlay not displaying due to incorrect corner point data.
    Open source →
  12. 7.0.0-rc.2 24 Apr 2025 pre-release
    Release notes

    Bugs fixed:

    • [Apple] Fixed build issues "Cannot use optional chaining on non-optional value".
    Open source →
  13. 7.0.0-rc.1 23 Apr 2025 pre-release
    Release notes

    After six months of development, Version 7.0.0 is finally moving out of beta with this release candidate! A stable release is scheduled for next week.

    Improvements:

    • [Android] Remove the dependency on org.jetbrains.kotlin:kotlin-bom.
    • [Android] Updated camerax dependencies.
    • Hot-restart for development purposes is now working correctly
    • Added message to MobileScannerErrorCode, which will be shown if kDebugMode is true. Otherwise, a generic error message will appear.
    • Fixed issues regarding initialization of the MobileScannerController, which could result in a black screen without error message.

    Bugs fixed:

    • [Android] Fixed rotation & orientation issues.
    • [Apple] Fixed rotation & orientation issues.
    • [Apple] Fixed a crash when stopping the camera when the camera device is nil.
    • [macOS] Fixed image not being mirrored.
    • [Web] Fixed barcode corners not being passed correctly resulting in no overlay being drawn.
    Open source →
  14. 7.0.0-beta.9 09 Apr 2025 pre-release
    Release notes

    BREAKING CHANGES:

    • This release requires Flutter 3.29.0 or higher.

    Bugs fixed:

    • [Android] Fixed a timing issue for the SurfaceProducer implementation, by switching to the onSurfaceCleanup callback.
    Open source →
  15. 7.0.0-beta.8 05 Mar 2025 pre-release
    Release notes

    Improvements:

    • Updated examples in example app.
    • Added [useAppLifecycleState] parameter to enable or disable handling of lifecycle state when no controller is passed.
    • Dispose function of [MobileScanner] is now async.
    • The [BarcodeOverlay] now correctly disposes the text painter.

    Bugs fixed:

    • [Apple] Fixed barcode corners representation for barcode overlay.
    • [Apple] Fixed zoom callback not working.
    • [Apple] Updated zoom scale factor to match Android implementation.
    • Fixed build issues on older kotlin versions.
    Open source →
  16. 7.0.0-beta.7 21 Feb 2025 pre-release
    Release notes

    BREAKING CHANGES:

    • The initial state of the MobileScannerState camera facing direction is changed to CameraFacing.unknown.

    Improvements:

    • [Android] Turn off logging for CameraX, except for the Log.ERROR logging level.
    • Added CameraFacing.external and CameraFacing.unknown enum values.

    Bugs fixed:

    • [Android] Fixed an issue when compiling with Kotlin 1.8.0 or higher.
    Open source →
  17. 7.0.0-beta.6 04 Feb 2025 pre-release
    Release notes

    BREAKING CHANGES:

    • This release requires Flutter 3.27.0 or higher.

    Improvements:

    • [Android] Added support for Impeller.
    • [Apple] Added support for rawBytes from the Vision API observations.
    • Export the MobileScannerViewAttributes and StartOptions types, to allow them in tests.

    Bugs fixed:

    • [Apple] Fixed a bug that caused a crash when the capture session could not add the video input.
    Open source →
  18. 7.0.0-beta.5 27 Jan 2025 pre-release
    Release notes

    Improvements:

    • [Android] Added autoZoom parameter to auto zoom if the detected code is to far from the camera.
    • [Android] Added invertImage parameter to invert image colors for analyzer to support white-on-black barcodes, which are not supported by MLKit.
    • [Android] Updated camera-camera2 dependencies.
    • Added pause functionality to all platforms.

    Bugs fixed:

    • [Android] Fixed resources not being closed.
    Open source →
  19. 7.0.0-beta.4 07 Jan 2025 pre-release
    Release notes

    BREAKING CHANGES:

    • The updateScanWindow method is now private. Instead, update the scan window in the MobileScanner widget directly.
    • The deprecated EncryptionType.none constant has been removed. Use EncryptionType.unknown instead.
    • The errorBuilder and placeholderBuilder of the MobileScanner widget no longer take a Widget argument, as it was unused.
    • The MobileScannerErrorBuilder typedef has been removed.

    Bugs fixed:

    • [Apple] Fixed an issue which caused the scanWindow to always be present, even when reset to no value.
    • [Apple] Fixed an issue that caused the barcode size to report the wrong height.
    • [Apple] Fixed a bug that caused the corner points to not be returned in clockwise orientation.
    • [Apple] Fixed an issue where analyzeImage would not throw an error if no valid image is provided as argument.
    • [Apple] Fixed an issue where analyzeImage would not return if no barcodes are found in the image.
    • [Apple] Fixed an issue where the iOS Simulator did not report that analyzing images from a file is unsupported.
    • [Android] Fixed an issue where analyzeImage would not return if no valid image is provided as argument.

    Improvements:

    • Added a basic barcode overlay widget, for use with the camera preview.
    • Added a basic scan window overlay widget, for use with the camera preview.
    • Update the bundled MLKit model for Android to version 17.3.0.
    • Added documentation in places where it was missing.
    • Added color and style properties to the BarcodePainter widget.
    • Enabled Swift Package Manager for the example app.
    Open source →
  20. 7.0.0-beta.3 29 Oct 2024 pre-release
    Release notes
    • Fixed a build issue on macOS.
    Open source →
  21. 7.0.0-beta.2 28 Oct 2024 pre-release
    Release notes

    Bugs fixed:

    • [Apple] Fixed an issue with the zoom slider being non-functional.
    • [Apple] Fixed an issue where the flash would briefly show when the camera is turned on.
    • [Apple] Fixed an issue that prevented the scan window from working.
    • [Apple] Fixed an issue that caused the barcode overlay to use the wrong dimensions.

    Improvements:

    • [iOS] Adds support for Swift Package Manager.

    Known issues:

    • BoxFit.cover & BoxFit.fitHeight produce the wrong width in the barcode overlay.
    Open source →
  22. 7.0.0-beta.1 23 Oct 2024 pre-release
    Release notes

    Improvements:

    • [iOS] Migrate to the Vision API.
    • [iOS] Updated the minimum iOS version back down to 12.0.
    • [Apple] Merged the iOS and MacOS sources.

    Known issues:

    • [Apple] The zoom slider does not work correctly.
    • [Apple] The scan window does not work correctly.
    • [Apple] The camera flash briefly shows when the camera is started.
    Open source →
  23. 6.0.11 22 Sep 2025
    Release notes
    • [Android] Update camerax dependencies to support 16KB pages sizes.
    Open source →
  24. 6.0.10 21 Apr 2025
    Release notes
    • [Apple] Fixed a crash when stopping the camera when the camera device is nil.
    Open source →
  25. 6.0.9 21 Apr 2025
    Release notes

    Fixed onDetect not working when a MobileScannerController is provided.

    Open source →
  26. 6.0.8 18 Apr 2025 withdrawn
    Release notes

    Improvements:

    • [Android] Remove the dependency on org.jetbrains.kotlin:kotlin-bom.
    • Hot-restart for development purposes is now working correctly
    • Added message to MobileScannerErrorCode, which will be shown if kDebugMode is true. Otherwise, a generic error message will appear.
    • Fixed issues regarding initialization of the MobileScannerController, which could result in a black screen without error message.
    Open source →
  27. 6.0.7 05 Mar 2025
    Release notes

    Improvements:

    • [Android] Updated bundled barcode scanning library to v17.3.0
    Open source →
  28. 6.0.6 04 Feb 2025
    Release notes

    Bugs fixed:

    • [web] Fixed a bug that prevented color inverted barcodes from being scanned.

    Improvements:

    • [web] Bump ZXingJS from version 0.19.1 to 0.21.3.
    Open source →
  29. 6.0.5 28 Jan 2025
    Release notes

    Bugs fixed:

    • [Android] Fixed crash due to imageProxy being closed too early.
    Open source →
  30. 6.0.4 27 Jan 2025 withdrawn
    Release notes

    Bugs fixed:

    • [Android] Fixed UI stutter when returnImage is true.
    Open source →
  31. 6.0.3 16 Jan 2025
    Release notes

    New features:

    • Adds pause function to pause the camera but keep textures in place.
    Open source →
  32. 6.0.2 23 Oct 2024
    Release notes

    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.
    Open source →
  33. 6.0.1 11 Oct 2024
    Release notes

    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 the MobileScanner widget, for use with onDetect.
    Open source →
  34. 6.0.0 08 Oct 2024
    Release notes

    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 the MobileScannerState.
    • Fixed a bug in the lifecycle handling sample. Now instead of checking isInitialized, the sample recommends using hasCameraPermission, 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 of returnImage.

    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.
    Open source →
  35. 5.2.3 09 Sep 2024
    Release notes

    Deprecations:

    • The EncryptionType.none constant has been deprecated, as its name was misleading. Use EncryptionType.unknown instead.

    Bugs fixed:

    • Fixed EncryptionType throwing on invalid SAE 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.
    Open source →
  36. 5.2.2 05 Sep 2024
    Release notes

    Improvements:

    • [MacOS] Adds Swift Package Manager support.
    • [MacOS] Adds support for returnImage.
    • Added a new size property to Barcode, that denotes the bounding box of the barcode.

    Bugs fixed:

    • Fixed some documentation errors for the size and image of BarcodeCapture.
    • [iOS] Fixed a bug with returnImage.
    • [Android/iOS] Adjusted the raw barcode scan value to pass the raw event data, like on MacOS.
    Open source →
  37. 5.2.1 20 Aug 2024
    Release notes
    • Updates the package:web dependency to use a version range.
    Open source →
  38. 5.2.0 20 Aug 2024
    Release notes

    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.
    Open source →
  39. 5.1.1 15 May 2024
    Release notes
    • This release fixes an issue with automatic starts in the examples.
    Open source →
  40. 5.1.0 03 May 2024
    Release notes

    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 the MobileScanner widget, but is nullable. You can still listen to MobileScannerController.barcodes directly by passing null to this parameter.
    • The autoStart attribute has been reinstated in the MobileScannerController 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 call MobileScannerController.start({CameraFacing? cameraDirection}).
    • The controller is no longer required in the MobileScanner 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.
    Open source →
  41. 5.0.2 30 Apr 2024
    Release notes

    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.
    Open source →
  42. 5.0.1 23 Apr 2024
    Release notes

    Improvements:

    • Adjusted the platform checks to use the defaultTargetPlatform API, so that tests can use the correct platform overrides.
    Open source →
  43. 5.0.0 22 Apr 2024
    Release notes

    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+
    Open source →
  44. 5.0.0-beta.3 16 Apr 2024 pre-release
    Release notes

    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 !)
    Open source →
  45. 5.0.0-beta.2 21 Mar 2024 pre-release
    Release notes

    Bugs fixed:

    • Fixed an issue where the scan window was not updated when its size was changed. (thanks @navaronbracke !)
    Open source →
  46. 5.0.0-beta.1 28 Feb 2024 pre-release
    Release notes

    BREAKING CHANGES:

    • The width and height of BarcodeCapture have been removed, in favor of size.
    • The raw attribute is now Object? instead of dynamic, 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 the start() method has been renamed to cameraDirection.
    • The analyzeImage function now correctly returns a BarcodeCapture? instead of a boolean.
    • The formats attribute of the MobileScannerController is now non-null.
    • The MobileScannerState enum has been renamed to MobileScannerAuthorizationState.
    • The various ValueNotifiers for the camera state have been removed. Use the value of the MobileScannerController instead.
    • The hasTorch getter has been removed. Instead, use the torch state of the controller's value. The TorchState enum now provides a new value for unavailable flashlights.
    • The autoStart attribute has been removed from the MobileScannerController. The controller should be manually started on-demand.
    • A controller is now required for the MobileScanner widget.
    • The onPermissionSet, onStart and onScannerStarted methods have been removed from the MobileScanner widget. Instead, await MobileScannerController.start().
    • The startDelay has been removed from the MobileScanner widget. Instead, use a delay between manual starts of one or more controllers.
    • The onDetect method has been removed from the MobileScanner widget. Instead, listen to MobileScannerController.barcodes directly.
    • The overlay widget of the MobileScanner 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, with MobileScannerState as its model.
    • The web implementation now supports alternate URLs for loading the barcode library.
    Open source →
  47. 4.0.1 28 Feb 2024
    Release notes

    Bugs fixed:

    • [iOS] Fixed a crash with a nil capture session when starting the camera. (thanks @navaronbracke !)
    Open source →
  48. 4.0.0 29 Jan 2024
    Release notes

    BREAKING CHANGES:

    • [Android] compileSdk has been upgraded to version 34.
    • [Android] Java version has been upgraded to version 17.
    Open source →
  49. 3.5.7 29 Jan 2024
    Release notes

    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.
    Open source →
  50. 3.5.6 08 Jan 2024
    Release notes

    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.
    Open source →
  51. 3.5.5 27 Nov 2023
    Release notes

    Bugs fixed:

    • Fixed a bug where the scanner would get stuck after denying permissions on Android. (thanks @navaronbracke !)
    Open source →
  52. 3.5.4 22 Nov 2023
    Release notes

    Bugs fixed:

    • Fixed a bug with an implicit conversion to integer for the scan timeout for iOS. (thanks @EArminjon !)
    Open source →
  53. 3.5.3 22 Nov 2023 withdrawn

    Nothing published for this version

  54. 3.5.2 31 Oct 2023
    Release notes

    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 !)
    Open source →
  55. 3.5.1 24 Oct 2023
    Release notes

    Improvements:

    • The type of an Address is now non-null.
    • The type of an Email is now non-null.
    • The phoneNumber of an SMS is now non-null.
    • The latitude and longitude of a GeoPoint are now non-null.
    • The phones and urls of ContactInfo are now non-null.
    • The url of a UrlBookmark is now non-null.
    • The type of Phone is now non-null.
    • The width and height of BarcodeCapture are now non-null.
    • The BarcodeCapture class now exposes a size.
    • The list of corners of a Barcode is now non-null.

    Bugs fixed:

    • Fixed the default values for the format and type arguments of the Barcode constructor. These now use BarcodeFormat.unknown and BarcodeType.unknown, rather than BarcodeFormat.ean13 and BarcodeType.text. (thanks @navaronbracke !)
    • Fixed messages not being sent on the main thread for Android, iOS and MacOS. (thanks @navaronbracke !)
    Open source →
  56. 3.5.0 22 Oct 2023
    Release notes

    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 !)
    Open source →
  57. 3.4.1 07 Aug 2023
    Release notes
    • Changed MediaQuery.sizeOf(context) to of(context).size for compatibility with older Flutter versions.
    Open source →
  58. 3.4.0 07 Aug 2023
    Release notes

    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 !)

    Open source →
  59. 3.3.0 27 Jun 2023
    Release notes

    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.
    Open source →
  60. 3.2.0 29 Mar 2023
    Release notes

    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
    Open source →

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive