From 1db6641f2ceec489205f42768b3954b23a762d6e Mon Sep 17 00:00:00 2001 From: Vusa Date: Mon, 29 Jun 2026 15:23:46 +0200 Subject: [PATCH] improving VMC flow --- lib/screens/confirm/confirm_screen.dart | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/lib/screens/confirm/confirm_screen.dart b/lib/screens/confirm/confirm_screen.dart index 00b9e59..ff4fe1f 100644 --- a/lib/screens/confirm/confirm_screen.dart +++ b/lib/screens/confirm/confirm_screen.dart @@ -370,25 +370,27 @@ class _ConfirmScreenState extends State shape: BoxShape.circle, ), child: const Icon( - Icons.open_in_new_rounded, + Icons.security_sharp, size: 28, color: Colors.orange, ), ), ), const SizedBox(height: 16), - Text( - 'You\'re leaving QPay', - style: TextStyle( - fontSize: 20, - fontWeight: FontWeight.w700, - color: isDark ? Colors.white : Colors.black87, + Center( + child: Text( + 'Secure Payment Stage', + style: TextStyle( + fontSize: 20, + fontWeight: FontWeight.w700, + color: isDark ? Colors.white : Colors.black87, + ), + textAlign: TextAlign.center, ), - textAlign: TextAlign.center, ), const SizedBox(height: 8), 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( fontSize: 13, fontWeight: FontWeight.w500, @@ -842,7 +844,7 @@ class _ConfirmScreenState extends State ), const Spacer(), Text( - '\$${cityWallet!.balance.toStringAsFixed(2)}', + '\$${cityWallet.balance.toStringAsFixed(2)}', style: TextStyle( fontSize: 13, fontWeight: FontWeight.w700,