scanwedge 1.0.4
scanwedge: ^1.0.4 copied to clipboard
A Flutter plugin to communicate with the Zebra Datawedge
import 'dart:developer';
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:scanwedge/scanwedge.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
final _demoProfileName = 'DemoProfile';
}
class _MyAppState extends State<MyApp> {
Scanwedge? _scanwedgePlugin;
String? _deviceInfo;
final notifierDisableKeystroke = ValueNotifier(true);
final notifierAimType = ValueNotifier(AimType.trigger);
@override
void initState() {
super.initState();
try {
Scanwedge.initialize().then((scanwedge) {
_scanwedgePlugin = scanwedge;
_deviceInfo = scanwedge.deviceName;
setState(() {});
});
} catch (e) {
log('initState Exception: $e');
}
}
_createProfile() async {
try {
final wasCreateProfileSuccessful = await _scanwedgePlugin?.createScanProfile(
switch (_scanwedgePlugin?.manufacturer) {
'ZEBRA' => ZebraProfileModel(
profileName: widget._demoProfileName,
enabledBarcodes: [
BarcodeConfig(barcodeType: BarcodeTypes.code39),
BarcodeConfig(barcodeType: BarcodeTypes.code128),
BarcodeConfig(barcodeType: BarcodeTypes.ean8),
BarcodeConfig(barcodeType: BarcodeTypes.ean13),
BarcodeConfig(barcodeType: BarcodeTypes.i2of5),
],
enableKeyStroke: !notifierDisableKeystroke.value,
aimType: notifierAimType.value,
),
'Honeywell' => HoneywellProfileModel(
profileName: widget._demoProfileName,
enableEanCheckDigitTransmission: true,
enabledBarcodes: [
BarcodeConfig(barcodeType: BarcodeTypes.code39),
BarcodeConfig(barcodeType: BarcodeTypes.code128),
BarcodeConfig(barcodeType: BarcodeTypes.ean8),
BarcodeConfig(barcodeType: BarcodeTypes.ean13),
],
),
_ => ProfileModel(
profileName: widget._demoProfileName,
enabledBarcodes: [
BarcodeTypes.code39.create(),
BarcodeTypes.code128.create(minLength: 10, maxLength: 15),
BarcodeTypes.qrCode.create(),
],
keepDefaults: false,
),
},
);
log('_createProfile()-$wasCreateProfileSuccessful');
} catch (e) {
log('_createProfile Exception: $e');
}
}
_triggerScan() async {
try {
log('_triggerScan()-${await _scanwedgePlugin?.toggleScanning()}');
} catch (e) {
log('_triggerScan Exception: $e');
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
actions: [
PopupMenuButton(
itemBuilder: (context) => [
const PopupMenuItem(
value: 'trigger',
child: Text('Trigger scan'),
),
const PopupMenuItem(
value: 'enable',
child: Text('Enable scanner'),
),
const PopupMenuItem(
value: 'disable',
child: Text('Disable scanner'),
),
const PopupMenuItem(
value: 'exit',
child: Text('Exit application'),
),
const PopupMenuItem(
value: 'battery',
child: Text('Get battery status'),
),
],
onSelected: (value) => switch (value) {
'trigger' => _triggerScan(),
'enable' => _scanwedgePlugin?.enableScanner(),
'disable' => _scanwedgePlugin?.disableScanner(),
'battery' => _scanwedgePlugin?.getBatteryStatus().then((status) => log('Battery status: $status')),
'exit' => exit(0),
_ => null,
},
),
],
),
body: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
// mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
// ElevatedButton(onPressed: _scanwedgePlugin.test, child: const Text('Create profile')),
Text(_deviceInfo ?? 'No device info', style: Theme.of(context).textTheme.labelSmall),
Card(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
// crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Row(
mainAxisSize: MainAxisSize.min,
children: [
const Text('Disable keystroke'),
const SizedBox(width: 5),
ValueListenableBuilder(
valueListenable: notifierDisableKeystroke,
builder: (context, disableKeyboard, _) => Switch(value: disableKeyboard, onChanged: (value) => notifierDisableKeystroke.value = value)),
],
),
ValueListenableBuilder(
valueListenable: notifierAimType,
builder: (context, aimType, _) => PopupMenuButton(
elevation: 4,
padding: const EdgeInsets.all(5),
itemBuilder: ((context) => AimType.values
.map((e) => PopupMenuItem(
value: e,
child: Text(e.toString().split('.').last),
))
.toList()),
child: Container(
padding: const EdgeInsets.symmetric(vertical: 4, horizontal: 8),
decoration: BoxDecoration(
color: Colors.blue, borderRadius: BorderRadius.circular(5), boxShadow: const [BoxShadow(offset: Offset(2, 2), blurRadius: 1, color: Colors.black54)]),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('AimType:', style: Theme.of(context).textTheme.bodyMedium?.copyWith(color: Colors.white)),
Padding(
padding: const EdgeInsets.only(left: 6.0),
child: Text(aimType.toString().split('.').last, style: Theme.of(context).textTheme.titleLarge?.copyWith(color: Colors.white)),
),
],
),
),
onSelected: (newAimType) => notifierAimType.value = newAimType,
)),
],
),
),
ElevatedButton(onPressed: _createProfile, child: const Text('Create profile')),
],
),
)),
TextFormField(
decoration: const InputDecoration(hintText: 'auto inserted if keystroke and focused', contentPadding: EdgeInsets.symmetric(horizontal: 6)),
),
const Expanded(child: SizedBox()),
Card(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: _scanwedgePlugin != null
? Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text('Last scan:'),
StreamBuilder(
stream: _scanwedgePlugin!.stream,
builder: ((context, snapshot) => Text(
snapshot.hasData
? snapshot.data.toString()
: snapshot.hasError
? snapshot.error.toString()
: 'Scan something',
style: Theme.of(context).textTheme.titleMedium,
))),
],
)
: const Center(child: CircularProgressIndicator()),
),
),
],
),
),
);
}
}