improving VMC flow

This commit is contained in:
2026-06-29 15:23:46 +02:00
parent 55921f6ee3
commit 1db6641f2c

View File

@@ -370,15 +370,16 @@ class _ConfirmScreenState extends State<ConfirmScreen>
shape: BoxShape.circle, shape: BoxShape.circle,
), ),
child: const Icon( child: const Icon(
Icons.open_in_new_rounded, Icons.security_sharp,
size: 28, size: 28,
color: Colors.orange, color: Colors.orange,
), ),
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Center(
'You\'re leaving QPay', child: Text(
'Secure Payment Stage',
style: TextStyle( style: TextStyle(
fontSize: 20, fontSize: 20,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
@@ -386,9 +387,10 @@ class _ConfirmScreenState extends State<ConfirmScreen>
), ),
textAlign: TextAlign.center, textAlign: TextAlign.center,
), ),
),
const SizedBox(height: 8), const SizedBox(height: 8),
Text( Text(
'You are about to be redirected to an external payment page. If nothing happens after the redirect, please make sure pop-ups are allowed in your browser settings.', 'We are now redirecting you to our secure payment page. If nothing happens after the redirect, please make sure pop-ups are allowed in your browser settings.',
style: TextStyle( style: TextStyle(
fontSize: 13, fontSize: 13,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
@@ -842,7 +844,7 @@ class _ConfirmScreenState extends State<ConfirmScreen>
), ),
const Spacer(), const Spacer(),
Text( Text(
'\$${cityWallet!.balance.toStringAsFixed(2)}', '\$${cityWallet.balance.toStringAsFixed(2)}',
style: TextStyle( style: TextStyle(
fontSize: 13, fontSize: 13,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,