436 lines
19 KiB
Dart
436 lines
19 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import '../../../core/services/auth_service.dart';
|
|
import '../../../core/utils/snackbar_util.dart';
|
|
|
|
class SignupScreen extends StatefulWidget {
|
|
const SignupScreen({super.key});
|
|
|
|
@override
|
|
State<SignupScreen> createState() => _SignupScreenState();
|
|
}
|
|
|
|
class _SignupScreenState extends State<SignupScreen> {
|
|
final _formKey = GlobalKey<FormState>();
|
|
final _mobileController = TextEditingController();
|
|
final _fullNameController = TextEditingController();
|
|
final _passwordController = TextEditingController();
|
|
final _confirmPasswordController = TextEditingController();
|
|
final _emailController = TextEditingController();
|
|
final _addressController = TextEditingController();
|
|
final _emergencyContactController = TextEditingController();
|
|
final _authService = Get.find<AuthService>();
|
|
bool _isPasswordVisible = false;
|
|
bool _isConfirmPasswordVisible = false;
|
|
|
|
@override
|
|
void dispose() {
|
|
_mobileController.dispose();
|
|
_fullNameController.dispose();
|
|
_passwordController.dispose();
|
|
_confirmPasswordController.dispose();
|
|
_emailController.dispose();
|
|
_addressController.dispose();
|
|
_emergencyContactController.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
Future<void> _handleSignup() async {
|
|
if (_formKey.currentState!.validate()) {
|
|
final success = await _authService.signup(
|
|
_mobileController.text.trim(),
|
|
_fullNameController.text.trim(),
|
|
_passwordController.text,
|
|
email: _emailController.text.trim().isEmpty ? null : _emailController.text.trim(),
|
|
address: _addressController.text.trim().isEmpty ? null : _addressController.text.trim(),
|
|
emergencyContact: _emergencyContactController.text.trim().isEmpty ? null : _emergencyContactController.text.trim(),
|
|
);
|
|
|
|
if (success) {
|
|
SnackbarUtil.showSuccess(
|
|
'Account created successfully! Welcome to LuckyChit.',
|
|
title: 'Success',
|
|
);
|
|
} else {
|
|
SnackbarUtil.showError(
|
|
'Failed to create account. Please try again.',
|
|
title: 'Signup Failed',
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: Container(
|
|
decoration: BoxDecoration(
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.bottomRight,
|
|
colors: [
|
|
Colors.green.shade50,
|
|
Colors.green.shade100,
|
|
],
|
|
),
|
|
),
|
|
child: SafeArea(
|
|
child: Center(
|
|
child: SingleChildScrollView(
|
|
padding: EdgeInsets.all(16.w),
|
|
child: ConstrainedBox(
|
|
constraints: BoxConstraints(maxWidth: 350.w),
|
|
child: Card(
|
|
elevation: 4,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(16.r),
|
|
),
|
|
child: Padding(
|
|
padding: EdgeInsets.all(24.w),
|
|
child: Form(
|
|
key: _formKey,
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
// Logo and Title
|
|
Icon(
|
|
Icons.account_balance_wallet,
|
|
size: 64.w,
|
|
color: Colors.green.shade600,
|
|
),
|
|
SizedBox(height: 16.h),
|
|
Text(
|
|
'Create Account',
|
|
style: TextStyle(
|
|
fontSize: 28.sp,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.green.shade700,
|
|
),
|
|
),
|
|
SizedBox(height: 8.h),
|
|
Text(
|
|
'Join LuckyChit today',
|
|
style: TextStyle(
|
|
fontSize: 16.sp,
|
|
color: Colors.grey.shade600,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
SizedBox(height: 32.h),
|
|
|
|
// Mobile Number Field
|
|
TextFormField(
|
|
controller: _mobileController,
|
|
keyboardType: TextInputType.phone,
|
|
style: TextStyle(fontSize: 16.sp),
|
|
decoration: InputDecoration(
|
|
labelText: 'Mobile Number *',
|
|
labelStyle: TextStyle(fontSize: 16.sp),
|
|
prefixIcon: Icon(Icons.phone, size: 24.w),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
filled: true,
|
|
fillColor: Colors.grey.shade50,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16.w,
|
|
vertical: 16.h,
|
|
),
|
|
),
|
|
validator: (value) {
|
|
if (value == null || value.isEmpty) {
|
|
return 'Please enter mobile number';
|
|
}
|
|
if (value.length != 10) {
|
|
return 'Mobile number must be 10 digits';
|
|
}
|
|
if (!RegExp(r'^[0-9]+$').hasMatch(value)) {
|
|
return 'Mobile number must contain only digits';
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
SizedBox(height: 20.h),
|
|
|
|
// Full Name Field
|
|
TextFormField(
|
|
controller: _fullNameController,
|
|
keyboardType: TextInputType.name,
|
|
style: TextStyle(fontSize: 16.sp),
|
|
decoration: InputDecoration(
|
|
labelText: 'Full Name *',
|
|
labelStyle: TextStyle(fontSize: 16.sp),
|
|
prefixIcon: Icon(Icons.person, size: 24.w),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
filled: true,
|
|
fillColor: Colors.grey.shade50,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16.w,
|
|
vertical: 16.h,
|
|
),
|
|
),
|
|
validator: (value) {
|
|
if (value == null || value.isEmpty) {
|
|
return 'Please enter your full name';
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
SizedBox(height: 20.h),
|
|
|
|
// Email Field (Optional)
|
|
TextFormField(
|
|
controller: _emailController,
|
|
keyboardType: TextInputType.emailAddress,
|
|
style: TextStyle(fontSize: 16.sp),
|
|
decoration: InputDecoration(
|
|
labelText: 'Email (optional)',
|
|
labelStyle: TextStyle(fontSize: 16.sp),
|
|
prefixIcon: Icon(Icons.email, size: 24.w),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
filled: true,
|
|
fillColor: Colors.grey.shade50,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16.w,
|
|
vertical: 16.h,
|
|
),
|
|
),
|
|
validator: (value) {
|
|
if (value != null && value.isNotEmpty) {
|
|
if (!RegExp(r'^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$').hasMatch(value)) {
|
|
return 'Please enter a valid email address';
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
SizedBox(height: 20.h),
|
|
|
|
// Address Field (Optional)
|
|
TextFormField(
|
|
controller: _addressController,
|
|
keyboardType: TextInputType.streetAddress,
|
|
maxLines: 2,
|
|
style: TextStyle(fontSize: 16.sp),
|
|
decoration: InputDecoration(
|
|
labelText: 'Address (optional)',
|
|
labelStyle: TextStyle(fontSize: 16.sp),
|
|
prefixIcon: Icon(Icons.home, size: 24.w),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
filled: true,
|
|
fillColor: Colors.grey.shade50,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16.w,
|
|
vertical: 16.h,
|
|
),
|
|
),
|
|
),
|
|
SizedBox(height: 20.h),
|
|
|
|
// Emergency Contact Field (Optional)
|
|
TextFormField(
|
|
controller: _emergencyContactController,
|
|
keyboardType: TextInputType.phone,
|
|
style: TextStyle(fontSize: 16.sp),
|
|
decoration: InputDecoration(
|
|
labelText: 'Emergency Contact (optional)',
|
|
labelStyle: TextStyle(fontSize: 16.sp),
|
|
prefixIcon: Icon(Icons.contact_phone, size: 24.w),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
filled: true,
|
|
fillColor: Colors.grey.shade50,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16.w,
|
|
vertical: 16.h,
|
|
),
|
|
),
|
|
validator: (value) {
|
|
if (value != null && value.isNotEmpty) {
|
|
if (value.length != 10) {
|
|
return 'Emergency contact must be 10 digits';
|
|
}
|
|
if (!RegExp(r'^[0-9]+$').hasMatch(value)) {
|
|
return 'Emergency contact must contain only digits';
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
SizedBox(height: 20.h),
|
|
|
|
// Password Field
|
|
TextFormField(
|
|
controller: _passwordController,
|
|
obscureText: !_isPasswordVisible,
|
|
style: TextStyle(fontSize: 16.sp),
|
|
decoration: InputDecoration(
|
|
labelText: 'Password *',
|
|
labelStyle: TextStyle(fontSize: 16.sp),
|
|
prefixIcon: Icon(Icons.lock, size: 24.w),
|
|
suffixIcon: IconButton(
|
|
icon: Icon(
|
|
_isPasswordVisible
|
|
? Icons.visibility
|
|
: Icons.visibility_off,
|
|
size: 24.w,
|
|
),
|
|
onPressed: () {
|
|
setState(() {
|
|
_isPasswordVisible = !_isPasswordVisible;
|
|
});
|
|
},
|
|
),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
filled: true,
|
|
fillColor: Colors.grey.shade50,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16.w,
|
|
vertical: 16.h,
|
|
),
|
|
),
|
|
validator: (value) {
|
|
if (value == null || value.isEmpty) {
|
|
return 'Please enter password';
|
|
}
|
|
if (value.length < 6) {
|
|
return 'Password must be at least 6 characters';
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
SizedBox(height: 20.h),
|
|
|
|
// Confirm Password Field
|
|
TextFormField(
|
|
controller: _confirmPasswordController,
|
|
obscureText: !_isConfirmPasswordVisible,
|
|
style: TextStyle(fontSize: 16.sp),
|
|
decoration: InputDecoration(
|
|
labelText: 'Confirm Password *',
|
|
labelStyle: TextStyle(fontSize: 16.sp),
|
|
prefixIcon: Icon(Icons.lock_outline, size: 24.w),
|
|
suffixIcon: IconButton(
|
|
icon: Icon(
|
|
_isConfirmPasswordVisible
|
|
? Icons.visibility
|
|
: Icons.visibility_off,
|
|
size: 24.w,
|
|
),
|
|
onPressed: () {
|
|
setState(() {
|
|
_isConfirmPasswordVisible = !_isConfirmPasswordVisible;
|
|
});
|
|
},
|
|
),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
filled: true,
|
|
fillColor: Colors.grey.shade50,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16.w,
|
|
vertical: 16.h,
|
|
),
|
|
),
|
|
validator: (value) {
|
|
if (value == null || value.isEmpty) {
|
|
return 'Please confirm password';
|
|
}
|
|
if (value != _passwordController.text) {
|
|
return 'Passwords do not match';
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
SizedBox(height: 28.h),
|
|
|
|
// Signup Button
|
|
Obx(() => SizedBox(
|
|
width: double.infinity,
|
|
height: 52.h,
|
|
child: ElevatedButton(
|
|
onPressed: _authService.isLoading.value
|
|
? null
|
|
: _handleSignup,
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: Colors.green.shade600,
|
|
foregroundColor: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(12.r),
|
|
),
|
|
elevation: 2,
|
|
),
|
|
child: _authService.isLoading.value
|
|
? SizedBox(
|
|
height: 24.h,
|
|
width: 24.w,
|
|
child: const CircularProgressIndicator(
|
|
strokeWidth: 2,
|
|
valueColor: AlwaysStoppedAnimation<Color>(
|
|
Colors.white,
|
|
),
|
|
),
|
|
)
|
|
: Text(
|
|
'Sign Up',
|
|
style: TextStyle(
|
|
fontSize: 18.sp,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
),
|
|
)),
|
|
SizedBox(height: 20.h),
|
|
|
|
// Login Link
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
'Already have an account? ',
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
color: Colors.grey.shade600,
|
|
),
|
|
),
|
|
TextButton(
|
|
onPressed: () {
|
|
Get.back();
|
|
},
|
|
child: Text(
|
|
'Login',
|
|
style: TextStyle(
|
|
fontSize: 14.sp,
|
|
fontWeight: FontWeight.w600,
|
|
color: Colors.green.shade700,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|