File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ### ** 1.4.7** (2025-08-11)
2+ - Fix qr code scanning for addresses
3+
14### ** 1.4.6** (2025-07-22)
25- Fix file import for ROAST groups
36
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ class QRScanner extends StatefulWidget {
1515class _QRScannerState extends State <QRScanner > {
1616 late QRViewController controller;
1717 final GlobalKey qrKey = GlobalKey (debugLabel: 'QR' );
18+ bool _hasScannedAndNavigated = false ;
1819
1920 @override
2021 void reassemble () {
@@ -90,7 +91,8 @@ class _QRScannerState extends State<QRScanner> {
9091
9192 controller.scannedDataStream.listen (
9293 (scanData) async {
93- if (! mounted) return ;
94+ if (! mounted || _hasScannedAndNavigated) return ;
95+ _hasScannedAndNavigated = true ;
9496 await Navigator .maybeOf (context)! .maybePop (scanData.code);
9597 },
9698 );
Original file line number Diff line number Diff line change 11name : peercoin
22description : A new Peercoin wallet.
33
4- version : 1.4.6+155
4+ version : 1.4.7+156
55environment :
66 sdk : ' >=3.2.0 <4.0.0'
77
You can’t perform that action at this time.
0 commit comments