flutter_scanner 0.1.1 copy "flutter_scanner: ^0.1.1" to clipboard
flutter_scanner: ^0.1.1 copied to clipboard

discontinued
outdated

A new qr canner Flutter plugin.

flutter_scanner #

totem

flutter_scanner:支持Android和IOS识别'一维条码'和'二维条码'的识别

pub package

亮点: flutter_scanner:支持在flutter页面中嵌入Scanner以此来应对多变的业务需求

效果 效果

flutter_scanner项目中的实战应用flutter sample

下载安卓apk安装包 IOS安装包,请下载example后运行项目获取 博客地址

1.安装 #

使用当前包作为依赖库

1. 依赖此库 #

在文件 'pubspec.yaml' 中添加

pub package


dependencies:

  flutter_scanner: ^version


  # Scanner package.
  flutter_scanner:
    git:
      url: https://github.com/pdliuw/flutter_scanner.git

2. 安装此库 #

你可以通过下面的命令行来安装此库


$ flutter pub get


你也可以通过项目开发工具通过可视化操作来执行上述步骤

3. 导入此库 #

现在,在你的Dart编辑代码中,你可以使用:


import 'package:flutter_scanner/flutter_scanner.dart';

2.使用 #

使用'相机'需要动态申请权限,动态权限推荐:permission_handler

1.使用'一维条码、二维条码'的地方中: #

简要示例

                //cameraWidth:相机的宽度;cameraHeight相机的高度,可根据实际的业务来动态调整
                Container(
                  color: Colors.black26,
                  width: cameraWidth,
                  height: cameraHeight,
                  child: PlatformScannerWidget(
                    platformScannerController: _scannerController,
                  ),
                ),

完整示例

完整示例,点击这里

2.调用/应用 #

*1、打开相机设备


          _scannerController.startCamera();

*2、打开预览/识别'条码'


          _scannerController.startCameraPreview();

*3、关闭预览/识别'条码'


      _scannerController.stopCameraPreview();

*4、关闭相机设备


      _scannerController.stopCamera();

*5、打开手电筒


      _scannerController.openFlash();

*5、关闭手电筒


      _scannerController.closeFlash();

*5、切换手电筒


      _scannerController.toggleFlash();

看到这里还意犹未尽?点击,查看项目示例

LICENSE #

Copyright 2019 pdliuw

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

1
likes
0
pub points
29%
popularity

Publisher

unverified uploader

A new qr canner Flutter plugin.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_scanner