feat: add BIP21 support (#414)

Co-authored-by: Erdem Yerebasmaz <erdem@yerebasmaz.com>
Co-authored-by: ok300 <106775972+ok300@users.noreply.github.com>
This commit is contained in:
yse
2024-08-22 12:23:36 +02:00
committed by GitHub
parent 5248dfc235
commit 1a89bcd6c1
44 changed files with 5039 additions and 3089 deletions

View File

@@ -153,7 +153,13 @@ class CancelScanButton extends StatelessWidget {
),
),
onPressed: () async {
controller.stop().then((_) => Navigator.of(context).pop());
controller.stop().then(
(_) {
if (context.mounted) {
Navigator.of(context).pop();
}
},
);
},
child: const Text(
"CANCEL",