Flutter plugin for scanning and generating QR codes using the ZXing library, supporting Android, iOS, and desktop platforms
flutterbarcode-generatorbarcode-scannergeneratorqrqrcodeqrcode-generatorqrcode-scannerscannerzxingbarcodezxscanner
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.2 KiB
92 lines
3.2 KiB
import 'dart:typed_data'; |
|
|
|
import 'package:flutter/material.dart'; |
|
import 'package:flutter/services.dart'; |
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart'; |
|
import 'package:hive_flutter/hive_flutter.dart'; |
|
|
|
import '../models/models.dart'; |
|
import '../utils/db_service.dart'; |
|
import '../utils/router.dart'; |
|
import '../widgets/common_widgets.dart'; |
|
|
|
class BarcodesPage extends StatefulWidget { |
|
const BarcodesPage({ |
|
super.key, |
|
}); |
|
|
|
@override |
|
State<BarcodesPage> createState() => _BarcodesPageState(); |
|
} |
|
|
|
class _BarcodesPageState extends State<BarcodesPage> { |
|
@override |
|
Widget build(BuildContext context) { |
|
return Scaffold( |
|
appBar: AppBar( |
|
title: const Text('Barcodes'), |
|
), |
|
body: _buildResultList(), |
|
floatingActionButton: FloatingActionButton( |
|
child: const Icon(FontAwesomeIcons.plus), |
|
onPressed: () { |
|
Navigator.of(context).pushNamed(AppRoutes.creator); |
|
}, |
|
), |
|
); |
|
} |
|
|
|
ValueListenableBuilder<Box<Encode>> _buildResultList() { |
|
return ValueListenableBuilder<Box<Encode>>( |
|
valueListenable: DbService.instance.getEncodes().listenable(), |
|
builder: (BuildContext context, Box<Encode> box, _) { |
|
final List<Encode> results = box.values.toList().cast<Encode>(); |
|
return results.isEmpty |
|
? const Center( |
|
child: Text( |
|
'Tap + to create a Barcode', |
|
style: TextStyle(fontSize: 24), |
|
)) |
|
: ListView.builder( |
|
itemCount: results.length, |
|
itemBuilder: (BuildContext context, int index) { |
|
final Encode result = results[index]; |
|
return ContainerX( |
|
child: Card( |
|
child: ListTile( |
|
leading: Image.memory( |
|
result.data ?? Uint8List(0), |
|
width: 60, |
|
), |
|
title: Text(result.text ?? ''), |
|
subtitle: Text(result.formatName), |
|
trailing: ButtonBar( |
|
mainAxisSize: MainAxisSize.min, |
|
children: <Widget>[ |
|
// Copy button |
|
IconButton( |
|
icon: const Icon(FontAwesomeIcons.copy), |
|
onPressed: () { |
|
Clipboard.setData( |
|
ClipboardData(text: result.text)); |
|
}, |
|
), |
|
// Remove button |
|
IconButton( |
|
icon: const Icon(FontAwesomeIcons.trash, |
|
color: Colors.red), |
|
onPressed: () { |
|
DbService.instance.deleteEncode(result); |
|
setState(() {}); |
|
}, |
|
), |
|
], |
|
), |
|
), |
|
), |
|
); |
|
}, |
|
); |
|
}); |
|
} |
|
}
|
|
|