From 9057ebdc6d1a55e83ec30e0f1540af0f29b58e41 Mon Sep 17 00:00:00 2001 From: Phuoc Nguyen Date: Fri, 7 Nov 2025 17:12:22 +0700 Subject: [PATCH] fix --- .../pages/otp_verification_page.dart | 90 ------------------- 1 file changed, 90 deletions(-) diff --git a/lib/features/auth/presentation/pages/otp_verification_page.dart b/lib/features/auth/presentation/pages/otp_verification_page.dart index 70b5151..b37e299 100644 --- a/lib/features/auth/presentation/pages/otp_verification_page.dart +++ b/lib/features/auth/presentation/pages/otp_verification_page.dart @@ -436,96 +436,6 @@ class _OtpVerificationPageState extends ConsumerState { const SizedBox(height: AppSpacing.lg), - // Alternative Methods - Container( - decoration: BoxDecoration( - color: AppColors.white, - borderRadius: BorderRadius.circular(AppRadius.card), - boxShadow: [ - BoxShadow( - color: Colors.black.withValues(alpha: 0.07), - blurRadius: 15, - offset: const Offset(0, 4), - ), - ], - ), - padding: const EdgeInsets.all(AppSpacing.lg), - child: Column( - children: [ - const Text( - 'Phương thức xác thực khác', - textAlign: TextAlign.center, - style: TextStyle( - fontSize: 14, - fontWeight: FontWeight.w600, - color: AppColors.grey900, - ), - ), - const SizedBox(height: 12), - Row( - children: [ - Expanded( - child: OutlinedButton.icon( - onPressed: () { - ScaffoldMessenger.of(context).showSnackBar( - const SnackBar( - content: Text('Chức năng đang phát triển'), - duration: Duration(seconds: 1), - ), - ); - }, - icon: const Icon(Icons.message, size: 18), - label: const Text( - 'SMS', - style: TextStyle(fontSize: 12), - ), - style: OutlinedButton.styleFrom( - foregroundColor: AppColors.grey900, - side: const BorderSide( - color: AppColors.primaryBlue, - width: 2, - ), - padding: const EdgeInsets.symmetric( - vertical: 8, - horizontal: 16, - ), - ), - ), - ), - const SizedBox(width: AppSpacing.md), - Expanded( - child: OutlinedButton.icon( - onPressed: () { - ScaffoldMessenger.of(context).showSnackBar( - const SnackBar( - content: Text('Chức năng đang phát triển'), - duration: Duration(seconds: 1), - ), - ); - }, - icon: const Icon(Icons.phone, size: 18), - label: const Text( - 'Gọi điện', - style: TextStyle(fontSize: 12), - ), - style: OutlinedButton.styleFrom( - foregroundColor: AppColors.grey900, - side: const BorderSide( - color: AppColors.primaryBlue, - width: 2, - ), - padding: const EdgeInsets.symmetric( - vertical: 8, - horizontal: 16, - ), - ), - ), - ), - ], - ), - ], - ), - ), ], ), ),