This commit is contained in:
Phuoc Nguyen
2025-11-07 17:12:22 +07:00
parent c0df1687a0
commit 9057ebdc6d

View File

@@ -436,96 +436,6 @@ class _OtpVerificationPageState extends ConsumerState<OtpVerificationPage> {
const SizedBox(height: AppSpacing.lg), 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,
),
),
),
),
],
),
],
),
),
], ],
), ),
), ),