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.
51 lines
1.1 KiB
51 lines
1.1 KiB
3 years ago
|
import 'package:flutter_zxing_example/models/models.dart';
|
||
|
import 'package:hive_flutter/hive_flutter.dart';
|
||
|
|
||
|
class DbService {
|
||
|
DbService._privateConstructor();
|
||
|
|
||
|
static final DbService instance = DbService._privateConstructor();
|
||
|
|
||
|
Future<void> initializeApp() async {
|
||
|
await Hive.initFlutter();
|
||
|
Hive.registerAdapter(CodeAdapter());
|
||
|
|
||
|
await Hive.openBox<Code>('codes');
|
||
|
await Hive.openBox<Encode>('encodes');
|
||
|
|
||
|
// Hive.box('codes').close();
|
||
|
}
|
||
|
|
||
|
Box<Code> getCodes() => Hive.box<Code>('codes');
|
||
|
|
||
|
Future deleteCodes() async {
|
||
|
var codes = getCodes();
|
||
|
await codes.deleteAll(codes.keys);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
Future addCode(Code value) async {
|
||
|
var codes = getCodes();
|
||
|
if (!codes.values.contains(value)) {
|
||
|
return codes.add(value);
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
Box<Encode> getEncodes() => Hive.box<Encode>('encodes');
|
||
|
|
||
|
Future deleteEncodes() async {
|
||
|
var encodes = getEncodes();
|
||
|
await encodes.deleteAll(encodes.keys);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
Future addEncode(Encode value) async {
|
||
|
var encodes = getEncodes();
|
||
|
if (!encodes.values.contains(value)) {
|
||
|
return encodes.add(value);
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
}
|