Last updated:
0 purchases
sequre copyproof
Flutter package for scanning sequre copyroof Qrcode
Features #
scan qrcode and sequre canvas and get result whether it is genuine or fake
Getting started #
flutter pub add sequre_copyproof
copied to clipboard
class ScanPage extends StatefulWidget {
const ScanPage({super.key});
@override
State<ScanPage> createState() => _ScanPageState();
}
class _ScanPageState extends State<ScanPage> {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: Container(
child: ScanQrCodeMlkit(
endpoint: "__your_backend_copyproof_goes_here__",
title: "Posisikan QR & Copyproof Inner ke dalam Area",
subTitle: "Scanning akan dimulai secara otomatis",
onResult: (String qrcode, ResponseCopyProofDetection result) {
Get.off(() => ScanResult(result: result,qrcode: qrcode,));
},
logs: false,
),
),
),
);
}
}
copied to clipboard
Usage #
use SequreCopyproof widget on your apps
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.