flutter_scandit 0.0.4 copy "flutter_scandit: ^0.0.4" to clipboard
flutter_scandit: ^0.0.4 copied to clipboard

outdated

Flutter Plugin for Scandit Barcode Scanning on Android and iOS

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:flutter_scandit/flutter_scandit.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  BarcodeResult barcode;

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Flutter Scandit example app'),
        ),
        body: Center(
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.center,
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              RaisedButton(
                onPressed: () async {
                  var result = await FlutterScandit(symbologies: [
                    Symbology.EAN13_UPCA,
                    Symbology.CODE128
                  ], licenseKey: "-- ENTER YOUR SCANDIT LICENSE KEY HERE -")
                      .scanBarcode();
                  setState(() {
                    barcode = result;
                  });
                },
                child: Text('SCAN'),
              ),
              SizedBox(
                height: 32,
              ),
              barcode != null
                  ? Text('${barcode.data} ${barcode.symbology}')
                  : Text('please scan a barcode...'),
            ],
          ),
        ),
      ),
    );
  }
}
7
likes
0
pub points
41%
popularity

Publisher

verified publisherpalota.co.za

Flutter Plugin for Scandit Barcode Scanning on Android and iOS

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_scandit