flutter_plugin_qrcode 1.0.2 copy "flutter_plugin_qrcode: ^1.0.2" to clipboard
flutter_plugin_qrcode: ^1.0.2 copied to clipboard

outdated

flutter 二维码扫描插件

[TOC]

flutter_plugin_qrcode #

二维码扫描 同时支持 Android&IOS

Getting Started #

扫描效果

android

IOS

引入方式 #

  dependencies:
    flutter_plugin_qrcode: ^1.0.1

##导入头文件

        import 'package:flutter_plugin_qrcode/flutter_plugin_qrcode.dart';

使用 #

  Future<void> getQrcodeState() async {
    String qrcode;
    try {
      qrcode = await FlutterPluginQrcode.getQRCode;
    } on PlatformException {
      qrcode = 'Failed to get platform version.';
    }

    if (!mounted) return;
    //获取到扫描的结果进行页面更新
    setState(() {
      _qrcode = qrcode;
    });
  }

关注公众号获取更多内容 #

3
likes
0
pub points
42%
popularity

Publisher

unverified uploader

flutter 二维码扫描插件

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_plugin_qrcode