mobile_adaptive_learning/lib/features/auth/widgets/dialog/signup_verification.dart

77 lines
2.4 KiB
Dart
Raw Normal View History

import 'package:english_learning/core/utils/styles/theme.dart';
import 'package:english_learning/core/widgets/global_button.dart';
import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SignupVerification extends StatelessWidget {
final VoidCallback onSubmit;
const SignupVerification({
super.key,
required this.onSubmit,
});
@override
Widget build(BuildContext context) {
return Dialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
),
child: Container(
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(20),
),
child: Padding(
padding: const EdgeInsets.all(24.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
RichText(
textAlign: TextAlign.center,
text: TextSpan(
children: [
TextSpan(
text: 'Account Verification',
style: AppTextStyles.blackTextStyle.copyWith(
fontSize: 16,
fontWeight: FontWeight.w900,
),
),
TextSpan(
text: ' in Progress',
style: AppTextStyles.blueTextStyle.copyWith(
fontSize: 16,
fontWeight: FontWeight.w900,
),
),
],
),
),
const SizedBox(height: 16),
SvgPicture.asset(
'lib/features/auth/assets/images/signup_verification.svg',
width: 160,
),
const SizedBox(height: 16),
Text(
'Your account has been registered successfully! Please check your email inbox to verify your account.',
textAlign: TextAlign.center,
style: AppTextStyles.disableTextStyle.copyWith(
fontSize: 12,
fontWeight: FontWeight.w500,
),
),
const SizedBox(height: 24),
GlobalButton(
text: 'Proceed to Login',
onPressed: onSubmit,
),
],
),
),
),
);
}
}