mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-22 16:34:23 +01:00
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:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user