812 lines
50 KiB
Dart
812 lines
50 KiB
Dart
import 'package:country_code_picker/country_code_picker.dart';
|
|
import 'package:driver/app/auth_screen/login_screen.dart';
|
|
import 'package:driver/app/auth_screen/phone_number_screen.dart';
|
|
import 'package:driver/constant/show_toast_dialog.dart';
|
|
import 'package:driver/controllers/signup_controller.dart';
|
|
import 'package:driver/models/car_makes.dart';
|
|
import 'package:driver/models/car_model.dart';
|
|
import 'package:driver/models/section_model.dart';
|
|
import 'package:driver/models/vehicle_type.dart';
|
|
import 'package:driver/models/zone_model.dart';
|
|
import 'package:driver/themes/app_them_data.dart';
|
|
import 'package:driver/themes/responsive.dart';
|
|
import 'package:driver/themes/text_field_widget.dart';
|
|
import 'package:driver/themes/theme_controller.dart';
|
|
import 'package:flutter/gestures.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../constant/constant.dart';
|
|
|
|
class SignupScreen extends StatelessWidget {
|
|
const SignupScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final themeController = Get.find<ThemeController>();
|
|
final isDark = themeController.isDark.value;
|
|
return GetX(
|
|
init: SignupController(),
|
|
builder: (controller) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: isDark ? AppThemeData.surfaceDark : AppThemeData.surface,
|
|
),
|
|
body: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 10),
|
|
child: SingleChildScrollView(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Create an Account".tr,
|
|
style: TextStyle(
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900, fontSize: 22, fontFamily: AppThemeData.semiBold),
|
|
),
|
|
Text(
|
|
"Sign up now to start your journey as a eMart driver and begin earning with every delivery.".tr,
|
|
style: TextStyle(color: isDark ? AppThemeData.grey50 : AppThemeData.grey500, fontFamily: AppThemeData.regular),
|
|
),
|
|
const SizedBox(
|
|
height: 10,
|
|
),
|
|
Text.rich(
|
|
TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'Already Have an account?'.tr,
|
|
style: TextStyle(
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontFamily: AppThemeData.medium,
|
|
fontWeight: FontWeight.w500,
|
|
)),
|
|
const WidgetSpan(child: SizedBox(width: 5)),
|
|
TextSpan(
|
|
recognizer: TapGestureRecognizer()
|
|
..onTap = () {
|
|
Get.offAll(const LoginScreen());
|
|
},
|
|
text: 'Log in'.tr,
|
|
style: TextStyle(
|
|
color: AppThemeData.primary300,
|
|
fontFamily: AppThemeData.medium,
|
|
fontWeight: FontWeight.w500,
|
|
decoration: TextDecoration.underline,
|
|
decorationColor: AppThemeData.primary300)),
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(
|
|
height: 20,
|
|
),
|
|
Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Service".tr,
|
|
style: TextStyle(
|
|
fontFamily: AppThemeData.semiBold, fontSize: 14, color: isDark ? AppThemeData.grey100 : AppThemeData.grey800),
|
|
),
|
|
const SizedBox(height: 5),
|
|
DropdownButtonFormField<String>(
|
|
hint: Text(
|
|
'Service Type'.tr,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey700 : AppThemeData.grey700,
|
|
fontFamily: AppThemeData.regular),
|
|
),
|
|
icon: const Icon(Icons.keyboard_arrow_down),
|
|
dropdownColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
decoration: InputDecoration(
|
|
errorStyle: const TextStyle(color: Colors.red),
|
|
isDense: true,
|
|
filled: true,
|
|
fillColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.primary300 : AppThemeData.primary300),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400, width: 1.2),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: const BorderSide(color: Colors.red),
|
|
),
|
|
disabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
),
|
|
initialValue: controller.selectedService.value.isEmpty ? null : controller.selectedService.value,
|
|
onChanged: (value) {
|
|
controller.selectedService.value = value!;
|
|
if (value != "Delivery Service") {
|
|
controller.getSection();
|
|
}
|
|
controller.update();
|
|
},
|
|
style: TextStyle(
|
|
fontSize: 14, color: isDark ? AppThemeData.grey50 : AppThemeData.grey900, fontFamily: AppThemeData.medium),
|
|
items: controller.service.map((item) {
|
|
return DropdownMenuItem<String>(value: item, child: Text(item.toString()));
|
|
}).toList(),
|
|
),
|
|
const SizedBox(height: 10),
|
|
],
|
|
),
|
|
controller.selectedService.value == "Delivery Service"
|
|
? SizedBox()
|
|
: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'Continue as a.'.tr,
|
|
textAlign: TextAlign.center,
|
|
style: AppThemeData.mediumTextStyle(
|
|
fontSize: 14, color: isDark ? AppThemeData.greyDark700 : AppThemeData.grey700),
|
|
),
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: RadioListTile<String>(
|
|
title: Text(
|
|
'Individual'.tr,
|
|
style: TextStyle(color: isDark ? AppThemeData.greyDark700 : AppThemeData.grey700),
|
|
),
|
|
value: 'Individual',
|
|
groupValue: controller.selectedValue.value,
|
|
activeColor: AppThemeData.primary300,
|
|
onChanged: (value) {
|
|
controller.selectedValue.value = value!;
|
|
},
|
|
),
|
|
),
|
|
Expanded(
|
|
child: RadioListTile<String>(
|
|
title: Text('Company'.tr,
|
|
style: TextStyle(color: isDark ? AppThemeData.greyDark700 : AppThemeData.grey700)),
|
|
value: 'Company',
|
|
groupValue: controller.selectedValue.value,
|
|
activeColor: AppThemeData.primary300,
|
|
onChanged: (value) {
|
|
controller.selectedValue.value = value!;
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
SizedBox(
|
|
height: 10,
|
|
),
|
|
],
|
|
),
|
|
controller.selectedValue.value == "Company"
|
|
? SizedBox()
|
|
: controller.selectedService.value == "Cab Service" ||
|
|
controller.selectedService.value == "Rental Service" ||
|
|
controller.selectedService.value == "Parcel Service"
|
|
? Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Select section".tr,
|
|
style: TextStyle(
|
|
fontFamily: AppThemeData.semiBold,
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey100 : AppThemeData.grey800),
|
|
),
|
|
const SizedBox(height: 5),
|
|
DropdownButtonFormField<SectionModel>(
|
|
hint: Text(
|
|
'Select Section'.tr,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey700 : AppThemeData.grey700,
|
|
fontFamily: AppThemeData.regular),
|
|
),
|
|
icon: const Icon(Icons.keyboard_arrow_down),
|
|
dropdownColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
decoration: InputDecoration(
|
|
errorStyle: const TextStyle(color: Colors.red),
|
|
isDense: true,
|
|
filled: true,
|
|
fillColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.primary300 : AppThemeData.primary300),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400, width: 1.2),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: const BorderSide(color: Colors.red),
|
|
),
|
|
disabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
),
|
|
initialValue: controller.selectedSection.value.id == null ? null : controller.selectedSection.value,
|
|
onChanged: (value) {
|
|
controller.selectedSection.value = value!;
|
|
controller.getVehicleType();
|
|
controller.update();
|
|
},
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontFamily: AppThemeData.medium),
|
|
items: controller.sectionList.map((item) {
|
|
return DropdownMenuItem<SectionModel>(value: item, child: Text(item.name.toString()));
|
|
}).toList(),
|
|
),
|
|
const SizedBox(height: 10),
|
|
controller.selectedService.value == "Cab Service" || controller.selectedService.value == "Rental Service"
|
|
? Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Select Vehicle Type".tr,
|
|
style: TextStyle(
|
|
fontFamily: AppThemeData.semiBold,
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey100 : AppThemeData.grey800),
|
|
),
|
|
const SizedBox(height: 5),
|
|
DropdownButtonFormField<VehicleType>(
|
|
hint: Text(
|
|
'Vehicle Type'.tr,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey700 : AppThemeData.grey700,
|
|
fontFamily: AppThemeData.regular),
|
|
),
|
|
icon: const Icon(Icons.keyboard_arrow_down),
|
|
dropdownColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
decoration: InputDecoration(
|
|
errorStyle: const TextStyle(color: Colors.red),
|
|
isDense: true,
|
|
filled: true,
|
|
fillColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.primary300 : AppThemeData.primary300),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(
|
|
color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400, width: 1.2),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: const BorderSide(color: Colors.red),
|
|
),
|
|
disabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
),
|
|
initialValue: controller.selectedVehicleType.value.id == null
|
|
? null
|
|
: controller.selectedVehicleType.value,
|
|
onChanged: (value) {
|
|
controller.selectedVehicleType.value = value!;
|
|
controller.update();
|
|
},
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontFamily: AppThemeData.medium),
|
|
items: controller.cabVehicleType.map((item) {
|
|
return DropdownMenuItem<VehicleType>(value: item, child: Text(item.name.toString()));
|
|
}).toList(),
|
|
),
|
|
const SizedBox(height: 10),
|
|
Text(
|
|
"Select Car Brand".tr,
|
|
style: TextStyle(
|
|
fontFamily: AppThemeData.semiBold,
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey100 : AppThemeData.grey800),
|
|
),
|
|
const SizedBox(height: 5),
|
|
DropdownButtonFormField<CarMakes>(
|
|
hint: Text(
|
|
'Car Brand'.tr,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey700 : AppThemeData.grey700,
|
|
fontFamily: AppThemeData.regular),
|
|
),
|
|
icon: const Icon(Icons.keyboard_arrow_down),
|
|
dropdownColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
decoration: InputDecoration(
|
|
errorStyle: const TextStyle(color: Colors.red),
|
|
isDense: true,
|
|
filled: true,
|
|
fillColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.primary300 : AppThemeData.primary300),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(
|
|
color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400, width: 1.2),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: const BorderSide(color: Colors.red),
|
|
),
|
|
disabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
),
|
|
initialValue:
|
|
controller.selectedCarMakes.value.id == null ? null : controller.selectedCarMakes.value,
|
|
onChanged: (value) {
|
|
controller.selectedCarMakes.value = value!;
|
|
controller.getCarModel();
|
|
controller.update();
|
|
},
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontFamily: AppThemeData.medium),
|
|
items: controller.carMakesList.map((item) {
|
|
return DropdownMenuItem<CarMakes>(value: item, child: Text(item.name.toString()));
|
|
}).toList(),
|
|
),
|
|
const SizedBox(height: 10),
|
|
Text(
|
|
"Select car model".tr,
|
|
style: TextStyle(
|
|
fontFamily: AppThemeData.semiBold,
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey100 : AppThemeData.grey800),
|
|
),
|
|
const SizedBox(height: 5),
|
|
DropdownButtonFormField<CarModel>(
|
|
hint: Text(
|
|
'Car model'.tr,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey700 : AppThemeData.grey700,
|
|
fontFamily: AppThemeData.regular),
|
|
),
|
|
icon: const Icon(Icons.keyboard_arrow_down),
|
|
dropdownColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
decoration: InputDecoration(
|
|
errorStyle: const TextStyle(color: Colors.red),
|
|
isDense: true,
|
|
filled: true,
|
|
fillColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.primary300 : AppThemeData.primary300),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(
|
|
color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400, width: 1.2),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: const BorderSide(color: Colors.red),
|
|
),
|
|
disabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.greyDark400 : AppThemeData.grey400),
|
|
),
|
|
),
|
|
initialValue:
|
|
controller.selectedCarModel.value.id == null ? null : controller.selectedCarModel.value,
|
|
onChanged: (value) {
|
|
controller.selectedCarModel.value = value!;
|
|
controller.update();
|
|
},
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontFamily: AppThemeData.medium),
|
|
items: controller.carModelList.map((item) {
|
|
return DropdownMenuItem<CarModel>(value: item, child: Text(item.name.toString()));
|
|
}).toList(),
|
|
),
|
|
const SizedBox(height: 10),
|
|
TextFieldWidget(
|
|
title: 'Car Plat Number'.tr,
|
|
controller: controller.carPlatNumberEditingController.value,
|
|
hintText: 'Enter Car Plat Number'.tr,
|
|
textInputAction: TextInputAction.next,
|
|
),
|
|
],
|
|
)
|
|
: SizedBox()
|
|
],
|
|
)
|
|
: SizedBox(),
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: TextFieldWidget(
|
|
title: 'First Name'.tr,
|
|
controller: controller.firstNameEditingController.value,
|
|
hintText: 'Enter First Name'.tr,
|
|
prefix: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: SvgPicture.asset(
|
|
"assets/icons/ic_user.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
),
|
|
),
|
|
textInputAction: TextInputAction.next,
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 10,
|
|
),
|
|
Expanded(
|
|
child: TextFieldWidget(
|
|
title: 'Last Name'.tr,
|
|
controller: controller.lastNameEditingController.value,
|
|
hintText: 'Enter Last Name'.tr,
|
|
prefix: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: SvgPicture.asset(
|
|
"assets/icons/ic_user.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
),
|
|
),
|
|
textInputAction: TextInputAction.next,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
TextFieldWidget(
|
|
title: 'Email Address'.tr,
|
|
textInputType: TextInputType.emailAddress,
|
|
controller: controller.emailEditingController.value,
|
|
hintText: 'Enter Email Address'.tr,
|
|
enable: controller.type.value == "google" || controller.type.value == "apple" ? false : true,
|
|
prefix: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: SvgPicture.asset(
|
|
"assets/icons/ic_mail.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
),
|
|
),
|
|
textInputAction: TextInputAction.next,
|
|
),
|
|
TextFieldWidget(
|
|
title: 'Phone Number'.tr,
|
|
controller: controller.phoneNUmberEditingController.value,
|
|
hintText: 'Enter Phone Number'.tr,
|
|
enable: controller.type.value == "mobileNumber" ? false : true,
|
|
textInputType: const TextInputType.numberWithOptions(signed: true, decimal: true),
|
|
textInputAction: TextInputAction.done,
|
|
inputFormatters: [
|
|
FilteringTextInputFormatter.allow(RegExp('[0-9]')),
|
|
],
|
|
prefix: CountryCodePicker(
|
|
enabled: controller.type.value == "mobileNumber" ? false : true,
|
|
onChanged: (value) {
|
|
controller.countryCodeEditingController.value.text = value.dialCode ?? Constant.defaultCountryCode;
|
|
},
|
|
dialogTextStyle: TextStyle(
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: AppThemeData.medium),
|
|
dialogBackgroundColor: isDark ? AppThemeData.grey800 : AppThemeData.grey100,
|
|
initialSelection: controller.countryCodeEditingController.value.text,
|
|
comparator: (a, b) => b.name!.compareTo(a.name.toString()),
|
|
textStyle: TextStyle(
|
|
fontSize: 14, color: isDark ? AppThemeData.grey50 : AppThemeData.grey900, fontFamily: AppThemeData.medium),
|
|
searchDecoration: InputDecoration(iconColor: isDark ? AppThemeData.grey50 : AppThemeData.grey900),
|
|
searchStyle: TextStyle(
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontWeight: FontWeight.w500,
|
|
fontFamily: AppThemeData.medium),
|
|
),
|
|
),
|
|
controller.selectedValue.value == "Company"
|
|
? SizedBox()
|
|
: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text("Zone".tr,
|
|
style: TextStyle(
|
|
fontFamily: AppThemeData.semiBold,
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey100 : AppThemeData.grey800)),
|
|
const SizedBox(
|
|
height: 5,
|
|
),
|
|
DropdownButtonFormField<ZoneModel>(
|
|
hint: Text(
|
|
'Select zone'.tr,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey700 : AppThemeData.grey700,
|
|
fontFamily: AppThemeData.regular,
|
|
),
|
|
),
|
|
dropdownColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
decoration: InputDecoration(
|
|
errorStyle: const TextStyle(color: Colors.red),
|
|
isDense: true,
|
|
filled: true,
|
|
fillColor: isDark ? AppThemeData.grey900 : AppThemeData.grey50,
|
|
disabledBorder: UnderlineInputBorder(
|
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.grey900 : AppThemeData.grey50, width: 1),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.primary300 : AppThemeData.primary300, width: 1),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.grey900 : AppThemeData.grey50, width: 1),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.grey900 : AppThemeData.grey50, width: 1),
|
|
),
|
|
border: OutlineInputBorder(
|
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
|
borderSide: BorderSide(color: isDark ? AppThemeData.grey900 : AppThemeData.grey50, width: 1),
|
|
),
|
|
),
|
|
initialValue: controller.selectedZone.value.id == null ? null : controller.selectedZone.value,
|
|
onChanged: (value) {
|
|
controller.selectedZone.value = value!;
|
|
controller.update();
|
|
},
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontFamily: AppThemeData.medium),
|
|
items: controller.zoneList.map((item) {
|
|
return DropdownMenuItem<ZoneModel>(
|
|
value: item,
|
|
child: Text(item.name.toString()),
|
|
);
|
|
}).toList()),
|
|
],
|
|
),
|
|
const SizedBox(
|
|
height: 10,
|
|
),
|
|
controller.type.value == "google" || controller.type.value == "apple" || controller.type.value == "mobileNumber"
|
|
? const SizedBox()
|
|
: Column(
|
|
children: [
|
|
TextFieldWidget(
|
|
title: 'Password'.tr,
|
|
controller: controller.passwordEditingController.value,
|
|
hintText: 'Enter Password'.tr,
|
|
obscureText: controller.passwordVisible.value,
|
|
prefix: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: SvgPicture.asset(
|
|
"assets/icons/ic_lock.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
),
|
|
),
|
|
suffix: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: InkWell(
|
|
onTap: () {
|
|
controller.passwordVisible.value = !controller.passwordVisible.value;
|
|
},
|
|
child: controller.passwordVisible.value
|
|
? SvgPicture.asset(
|
|
"assets/icons/ic_password_show.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
)
|
|
: SvgPicture.asset(
|
|
"assets/icons/ic_password_close.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
)),
|
|
),
|
|
textInputAction: TextInputAction.next,
|
|
),
|
|
TextFieldWidget(
|
|
title: 'Confirm Password'.tr,
|
|
controller: controller.conformPasswordEditingController.value,
|
|
hintText: 'Enter Confirm Password'.tr,
|
|
obscureText: controller.conformPasswordVisible.value,
|
|
prefix: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: SvgPicture.asset(
|
|
"assets/icons/ic_lock.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
),
|
|
),
|
|
suffix: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: InkWell(
|
|
onTap: () {
|
|
controller.conformPasswordVisible.value = !controller.conformPasswordVisible.value;
|
|
},
|
|
child: controller.conformPasswordVisible.value
|
|
? SvgPicture.asset(
|
|
"assets/icons/ic_password_show.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
)
|
|
: SvgPicture.asset(
|
|
"assets/icons/ic_password_close.svg",
|
|
colorFilter: ColorFilter.mode(
|
|
isDark ? AppThemeData.grey300 : AppThemeData.grey600,
|
|
BlendMode.srcIn,
|
|
),
|
|
)),
|
|
),
|
|
textInputAction: TextInputAction.next,
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
bottomNavigationBar: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Text.rich(
|
|
TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: 'Log in with'.tr,
|
|
style: TextStyle(
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey900,
|
|
fontFamily: AppThemeData.medium,
|
|
fontWeight: FontWeight.w500,
|
|
)),
|
|
const WidgetSpan(
|
|
child: SizedBox(
|
|
width: 10,
|
|
)),
|
|
TextSpan(
|
|
recognizer: TapGestureRecognizer()
|
|
..onTap = () {
|
|
Get.to(const PhoneNumberScreen());
|
|
},
|
|
text: 'Mobile Number'.tr,
|
|
style: TextStyle(
|
|
color: AppThemeData.primary300,
|
|
fontFamily: AppThemeData.medium,
|
|
fontWeight: FontWeight.w500,
|
|
decoration: TextDecoration.underline,
|
|
decorationColor: AppThemeData.primary300)),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(
|
|
height: 10,
|
|
),
|
|
InkWell(
|
|
onTap: () {
|
|
if (controller.type.value == "google" || controller.type.value == "apple" || controller.type.value == "mobileNumber") {
|
|
if (controller.firstNameEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter first name".tr);
|
|
} else if (controller.lastNameEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter last name".tr);
|
|
} else if (controller.emailEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter valid email".tr);
|
|
} else if (controller.phoneNUmberEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter Phone number".tr);
|
|
} else if (controller.selectedZone.value.id == null) {
|
|
ShowToastDialog.showToast("Please select zone".tr);
|
|
} else {
|
|
controller.signUpWithEmailAndPassword();
|
|
}
|
|
} else {
|
|
if (controller.firstNameEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter first name".tr);
|
|
} else if (controller.lastNameEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter last name".tr);
|
|
} else if (controller.emailEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter valid email".tr);
|
|
} else if (controller.phoneNUmberEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter Phone number".tr);
|
|
} else if (controller.passwordEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter password");
|
|
} else if (controller.conformPasswordEditingController.value.text.isEmpty) {
|
|
ShowToastDialog.showToast("Please enter Confirm password".tr);
|
|
} else if (controller.passwordEditingController.value.text !=
|
|
controller.conformPasswordEditingController.value.text) {
|
|
ShowToastDialog.showToast("Password and Confirm password doesn't match".tr);
|
|
} else if (controller.selectedValue.value == "Individual" && controller.selectedZone.value.id == null) {
|
|
ShowToastDialog.showToast("Please select zone".tr);
|
|
} else {
|
|
controller.signUpWithEmailAndPassword();
|
|
}
|
|
}
|
|
},
|
|
child: Container(
|
|
color: AppThemeData.primary300,
|
|
width: Responsive.width(100, context),
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 16),
|
|
child: Text(
|
|
"Sign up".tr,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: isDark ? AppThemeData.grey50 : AppThemeData.grey50,
|
|
fontSize: 16,
|
|
fontFamily: AppThemeData.medium,
|
|
fontWeight: FontWeight.w400,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
});
|
|
}
|
|
}
|