pd-android-app/lib/screens/authentication/verify_phone_screen.dart
2024-08-26 11:04:37 +05:30

130 lines
4.6 KiB
Dart

import 'package:cheminova/screens/authentication/verify_otp_screen.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';
class VerifyPhoneScreen extends StatefulWidget {
const VerifyPhoneScreen({super.key});
@override
State<VerifyPhoneScreen> createState() => _VerifyPhoneScreenState();
}
class _VerifyPhoneScreenState extends State<VerifyPhoneScreen> {
final userNameController = TextEditingController();
final passwordController = TextEditingController();
@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/phone.svg',
height: Get.height * 0.05,
),
),
Container(
padding: const EdgeInsets.only(bottom: 10),
alignment: Alignment.centerLeft,
child: Text(
'Verify Phone Number',
style: GoogleFonts.getFont(
'Roboto',
fontWeight: FontWeight.w500,
fontSize: 30,
height: 1.2,
),
),
),
Container(
padding: const EdgeInsets.only(bottom: 10),
alignment: Alignment.centerLeft,
child: Text(
'Please enter your phone number to receive one time password',
style: GoogleFonts.getFont(
'Roboto',
fontWeight: FontWeight.w300,
fontSize: 14,
height: 1.8,
),
),
),
InputField(
hintText: "Enter your Mobile Number",
labelText: "Enter your Mobile Number",
controller: userNameController,
keyboardType: TextInputType.number,
),
const SizedBox(height: 30),
CustomButton(
text: "Get OTP",
onPressed: () => Get.to(() => const VerifyOtpScreen()),
),
],
),
),
),
),
),
],
),
);
}
}