mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +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 {
|
||||
try {
|
||||
await launchUrl(url);
|
||||
await launchUrl(url, mode: LaunchMode.externalApplication);
|
||||
} catch (e) {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,7 +53,7 @@ class Setup2FAQRPage extends BasePage {
|
|||
decoration: BoxDecoration(
|
||||
border: Border.all(
|
||||
width: 3,
|
||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
||||
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor,
|
||||
),
|
||||
),
|
||||
child: Container(
|
||||
|
@ -212,7 +212,7 @@ class Setup2FAQRPage extends BasePage {
|
|||
|
||||
static void _launchUrl(Uri url) async {
|
||||
try {
|
||||
await launchUrl(url);
|
||||
await launchUrl(url, mode: LaunchMode.externalApplication);
|
||||
} catch (e) {}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue