fix UI issues

This commit is contained in:
Serhii 2023-12-14 14:11:07 +02:00
parent 660cd44244
commit 31530dd566
2 changed files with 3 additions and 3 deletions

View file

@ -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) {}
} }
} }

View file

@ -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) {}
} }
} }