Julian Steenbakker
Committed by GitHub

Merge pull request #22 from juliansteenbakker/feature/scanner-arguments

imp: export MobileScannerArguments
## 0.1.2
* MobileScannerArguments is now exported. [7](https://github.com/juliansteenbakker/mobile_scanner/issues/7)
Bugfixes:
* Fixed application crashing when stop() or start() is called multiple times. [5](https://github.com/juliansteenbakker/mobile_scanner/issues/5)
## 0.1.1
mobile_scanner is now compatible with sdk >= 2.12 and flutter >= 2.2.0
... ...
... ... @@ -2,4 +2,5 @@ library mobile_scanner;
export 'src/mobile_scanner.dart';
export 'src/mobile_scanner_controller.dart';
export 'src/mobile_scanner_arguments.dart';
export 'src/objects/barcode.dart';
... ...
import 'package:flutter/material.dart';
import 'package:mobile_scanner/mobile_scanner.dart';
import 'mobile_scanner_arguments.dart';
enum Ratio { ratio_4_3, ratio_16_9 }
/// A widget showing a live camera preview.
... ...
... ... @@ -4,7 +4,6 @@ import 'package:flutter/cupertino.dart';
import 'package:flutter/services.dart';
import 'package:mobile_scanner/mobile_scanner.dart';
import 'mobile_scanner_arguments.dart';
import 'objects/barcode_utility.dart';
/// The facing of a camera.
... ...