|
@@ -1,5 +1,4 @@
|
|
|
import 'package:flutter/material.dart';
|
|
|
-import 'package:putra_go/screens/passenger/authenticate/userRegisterSuccess.dart';
|
|
|
|
|
|
import 'driverMain.dart';
|
|
|
import 'driverResisterSuccess.dart';
|
|
@@ -30,7 +29,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
backgroundColor: Colors.white,
|
|
|
appBar: AppBar(
|
|
|
leading: IconButton(
|
|
|
- icon: Icon(
|
|
|
+ icon: const Icon(
|
|
|
Icons.chevron_left,
|
|
|
size: 36,
|
|
|
),
|
|
@@ -53,7 +52,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
mainAxisAlignment: MainAxisAlignment.start, // Align at the top
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
children: [
|
|
|
- Align(
|
|
|
+ const Align(
|
|
|
alignment: Alignment.centerLeft,
|
|
|
child: Text(
|
|
|
"Register as a Driver..",
|
|
@@ -67,7 +66,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Input name
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -75,14 +74,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "Name",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -91,7 +90,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -105,7 +104,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Input UPM email
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -113,14 +112,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "UPM email",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -129,7 +128,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -145,7 +144,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Input Phone Number
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -153,14 +152,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "Phone Number (11-, not 011-)",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -169,7 +168,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -185,7 +184,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Input IC number
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -193,14 +192,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "IC Number / Passort Number",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -209,13 +208,13 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
|
),
|
|
|
validator: (val) =>
|
|
|
- val!.length != 12 || val!.length != 9 ? 'Enter a valid IC/Passport Number' : null,
|
|
|
+ val!.length != 12 || val.length != 9 ? 'Enter a valid IC/Passport Number' : null,
|
|
|
obscureText: false,
|
|
|
onChanged: (val) {
|
|
|
setState(() => icNumber = val);
|
|
@@ -225,7 +224,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Input CarID
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -233,14 +232,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "Car ID (Plate Number)",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -249,7 +248,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -263,7 +262,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Input Car Brand
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -271,14 +270,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "Car Brand",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -287,7 +286,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -301,7 +300,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Input Car Color
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -309,14 +308,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "Car Color",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -325,7 +324,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -340,7 +339,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
|
|
|
|
|
|
// Input Password
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -348,14 +347,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "Password",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -364,7 +363,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -380,7 +379,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Check Password
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 52,
|
|
@@ -388,14 +387,14 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
color: Colors.white,
|
|
|
border: Border.all(
|
|
|
- color: Color.fromRGBO(165, 165, 165, 1),
|
|
|
+ color: const Color.fromRGBO(165, 165, 165, 1),
|
|
|
width: 1,
|
|
|
),
|
|
|
),
|
|
|
child: Padding(
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 10.0),
|
|
|
child: TextFormField(
|
|
|
- decoration: InputDecoration(
|
|
|
+ decoration: const InputDecoration(
|
|
|
hintText: "Password again",
|
|
|
hintStyle: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -404,7 +403,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
border: InputBorder.none,
|
|
|
),
|
|
|
- style: TextStyle(
|
|
|
+ style: const TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
|
fontSize: 20,
|
|
|
color: Colors.black, // input text color
|
|
@@ -417,13 +416,13 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
|
|
|
// Continue Button
|
|
|
- SizedBox(height: 20),
|
|
|
+ const SizedBox(height: 20),
|
|
|
Container(
|
|
|
width: 334,
|
|
|
height: 65,
|
|
|
decoration: BoxDecoration(
|
|
|
borderRadius: BorderRadius.circular(10),
|
|
|
- color: Color.fromRGBO(119, 97, 255, 1.0),
|
|
|
+ color: const Color.fromRGBO(119, 97, 255, 1.0),
|
|
|
),
|
|
|
child: TextButton(
|
|
|
onPressed: () {
|
|
@@ -433,7 +432,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
MaterialPageRoute(builder: (context) => driverRegisterSuccess()),
|
|
|
);
|
|
|
},
|
|
|
- child: Text(
|
|
|
+ child: const Text(
|
|
|
'Continue',
|
|
|
style: TextStyle(
|
|
|
fontFamily: 'Poppins',
|
|
@@ -444,7 +443,7 @@ class _userRegisterState extends State<driverRegister> {
|
|
|
),
|
|
|
),
|
|
|
),
|
|
|
- SizedBox(height: 10),
|
|
|
+ const SizedBox(height: 10),
|
|
|
],
|
|
|
),
|
|
|
),
|