mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-25 08:39:06 +00:00
fix UI issues
This commit is contained in:
parent
660cd44244
commit
31530dd566
2 changed files with 3 additions and 3 deletions
|
@ -71,7 +71,7 @@ class Setup2FAPage extends BasePage {
|
||||||
|
|
||||||
static void _launchUrl(Uri url) async {
|
static void _launchUrl(Uri url) async {
|
||||||
try {
|
try {
|
||||||
await launchUrl(url);
|
await launchUrl(url, mode: LaunchMode.externalApplication);
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@ class Setup2FAQRPage extends BasePage {
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
width: 3,
|
width: 3,
|
||||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
child: Container(
|
child: Container(
|
||||||
|
@ -212,7 +212,7 @@ class Setup2FAQRPage extends BasePage {
|
||||||
|
|
||||||
static void _launchUrl(Uri url) async {
|
static void _launchUrl(Uri url) async {
|
||||||
try {
|
try {
|
||||||
await launchUrl(url);
|
await launchUrl(url, mode: LaunchMode.externalApplication);
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue