148 lines
5.3 KiB
Dart
148 lines
5.3 KiB
Dart
import 'package:cheminova/widgets/custom_button.dart';
|
|
import 'package:cheminova/widgets/input_field.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_svg/svg.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
import 'controller/auth_controller.dart';
|
|
|
|
class ForgetPasswordScreen extends StatefulWidget {
|
|
const ForgetPasswordScreen({super.key});
|
|
|
|
@override
|
|
State<ForgetPasswordScreen> createState() => _ForgetPasswordScreenState();
|
|
}
|
|
|
|
class _ForgetPasswordScreenState extends State<ForgetPasswordScreen> {
|
|
final userNameController = TextEditingController();
|
|
final passwordController = TextEditingController();
|
|
final authController = Get.put(AuthController());
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
extendBodyBehindAppBar: true,
|
|
appBar: AppBar(
|
|
backgroundColor: Colors.transparent,
|
|
elevation: 0,
|
|
leading: GestureDetector(
|
|
onTap: () => Get.back(),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0), // Adjust the padding as needed
|
|
child: SizedBox(
|
|
width: 24, // Adjust the width as needed
|
|
height: 24, // Adjust the height as needed
|
|
child: SvgPicture.asset(
|
|
'assets/svg/back_arrow.svg',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
body: Stack(
|
|
alignment: Alignment.topCenter,
|
|
children: [
|
|
Container(
|
|
decoration: const BoxDecoration(
|
|
image: DecorationImage(
|
|
fit: BoxFit.cover,
|
|
image: AssetImage(
|
|
'assets/images/image_1.png',
|
|
),
|
|
),
|
|
borderRadius: BorderRadius.only(
|
|
bottomLeft: Radius.circular(50.0),
|
|
bottomRight: Radius.circular(50.0),
|
|
),
|
|
),
|
|
child: SizedBox(
|
|
width: Get.width,
|
|
height: Get.height * 0.7,
|
|
),
|
|
),
|
|
Center(
|
|
child: SingleChildScrollView(
|
|
child: Card(
|
|
margin: const EdgeInsets.symmetric(horizontal: 24),
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(19),
|
|
side: const BorderSide(color: Color(0xFFFDFDFD)),
|
|
),
|
|
color: const Color(0xFFB4D1E5).withOpacity(0.9),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
children: [
|
|
Container(
|
|
alignment: Alignment.centerLeft,
|
|
padding: const EdgeInsets.only(bottom: 10),
|
|
child: SvgPicture.asset(
|
|
'assets/svg/forget_password.svg',
|
|
height: Get.height * 0.05,
|
|
),
|
|
),
|
|
Container(
|
|
padding: const EdgeInsets.only(bottom: 10),
|
|
alignment: Alignment.centerLeft,
|
|
child: Text(
|
|
'Forgot Password',
|
|
style: GoogleFonts.getFont(
|
|
'Roboto',
|
|
fontWeight: FontWeight.w500,
|
|
fontSize: 30,
|
|
height: 1.2,
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
padding: const EdgeInsets.only(bottom: 10),
|
|
alignment: Alignment.centerLeft,
|
|
child: Text(
|
|
'Enter your Registered email ID to generate new password',
|
|
style: GoogleFonts.getFont(
|
|
'Roboto',
|
|
fontWeight: FontWeight.w300,
|
|
fontSize: 14,
|
|
height: 1.8,
|
|
),
|
|
),
|
|
),
|
|
InputField(
|
|
hintText: "Email",
|
|
labelText: "Email",
|
|
controller: authController.emailController,
|
|
keyboardType: TextInputType.emailAddress,
|
|
),
|
|
const SizedBox(height: 30),
|
|
GestureDetector(
|
|
onTap: () => Get.back(),
|
|
child: Text(
|
|
'Back to Login',
|
|
style: GoogleFonts.getFont(
|
|
'Roboto',
|
|
fontWeight: FontWeight.w400,
|
|
fontSize: 20,
|
|
height: 1,
|
|
letterSpacing: -0.2,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 30),
|
|
CustomButton(text: "Send",
|
|
|
|
onPressed: () => authController.forgotpass(),
|
|
isLoading: authController.isLoading.value,
|
|
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|