userRegister.dart 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. import 'package:flutter/material.dart';
  2. import 'package:putra_go/screens/passenger/authenticate/userRegisterSuccess.dart';
  3. import '../../../services/auth.dart';
  4. class userRegister extends StatefulWidget {
  5. @override
  6. State<userRegister> createState() => _userRegisterState();
  7. }
  8. class _userRegisterState extends State<userRegister> {
  9. final AuthService _auth = AuthService();
  10. final _formKey = GlobalKey<FormState>();
  11. // text field state
  12. String name = '';
  13. String email = '';
  14. String phoneNumber = '';
  15. String icNumber = '';
  16. String password = '';
  17. String passwordCheck = '';
  18. String error = '';
  19. bool loading = false;
  20. int InputFontsize = 15;
  21. @override
  22. Widget build(BuildContext context) {
  23. return Scaffold(
  24. backgroundColor: Colors.white,
  25. appBar: AppBar(
  26. leading: IconButton(
  27. icon: Icon(
  28. Icons.chevron_left,
  29. size: 36,
  30. ),
  31. onPressed: () {
  32. Navigator.pop(context);
  33. },
  34. ),
  35. ),
  36. body:
  37. SingleChildScrollView(
  38. child: Form(
  39. key: _formKey,
  40. child: Column(
  41. children: <Widget>[
  42. Padding(
  43. padding: const EdgeInsets.symmetric(vertical: 16.0, horizontal: 50),
  44. child: Column(
  45. mainAxisAlignment: MainAxisAlignment.start, // Align at the top
  46. crossAxisAlignment: CrossAxisAlignment.center,
  47. children: [
  48. Align(
  49. alignment: Alignment.centerLeft,
  50. child: Text(
  51. "Register",
  52. style: TextStyle(
  53. fontFamily: 'Poppins',
  54. fontSize: 30,
  55. fontWeight: FontWeight.bold,
  56. color: Colors.black,
  57. ),
  58. ),
  59. ),
  60. // Input name
  61. SizedBox(height: 10),
  62. Container(
  63. width: 334,
  64. height: 52,
  65. decoration: BoxDecoration(
  66. borderRadius: BorderRadius.circular(8),
  67. color: Colors.white,
  68. border: Border.all(
  69. color: Color.fromRGBO(165, 165, 165, 1),
  70. width: 1,
  71. ),
  72. ),
  73. child: Padding(
  74. padding: const EdgeInsets.symmetric(horizontal: 20.0),
  75. child:
  76. TextFormField(
  77. decoration: InputDecoration(
  78. hintText: "Name",
  79. hintStyle: TextStyle(
  80. fontFamily: 'Poppins',
  81. // fontSize: 20,
  82. color: Color.fromRGBO(165, 165, 165, 1),
  83. ),
  84. border: InputBorder.none,
  85. ),
  86. style: TextStyle(
  87. fontFamily: 'Poppins',
  88. // fontSize: 20,
  89. color: Colors.black, // input text color
  90. ),
  91. validator: (val) => val!.length < 4 ? 'Enter a name more than 3 chars' : null,
  92. onChanged: (val) {
  93. setState(() => name = val);
  94. },
  95. ),
  96. ),
  97. ),
  98. // Input UPM email
  99. SizedBox(height: 20),
  100. Container(
  101. width: 334,
  102. height: 52,
  103. decoration: BoxDecoration(
  104. borderRadius: BorderRadius.circular(8),
  105. color: Colors.white,
  106. border: Border.all(
  107. color: Color.fromRGBO(165, 165, 165, 1),
  108. width: 1,
  109. ),
  110. ),
  111. child: Padding(
  112. padding: const EdgeInsets.symmetric(horizontal: 10.0),
  113. child: TextFormField(
  114. decoration: InputDecoration(
  115. hintText: "UPM email",
  116. hintStyle: TextStyle(
  117. fontFamily: 'Poppins',
  118. // fontSize: 20,
  119. color: Color.fromRGBO(165, 165, 165, 1),
  120. ),
  121. border: InputBorder.none,
  122. ),
  123. style: TextStyle(
  124. fontFamily: 'Poppins',
  125. // fontSize: 20,
  126. color: Colors.black, // input text color
  127. ),
  128. validator: (val) =>
  129. val!.length < 4 ? 'Enter your UPM email' : null,
  130. obscureText: false,
  131. onChanged: (val) {
  132. setState(() => email= val);
  133. },
  134. ),
  135. ),
  136. ),
  137. // Input Phone Number
  138. SizedBox(height: 20),
  139. Container(
  140. width: 334,
  141. height: 52,
  142. decoration: BoxDecoration(
  143. borderRadius: BorderRadius.circular(8),
  144. color: Colors.white,
  145. border: Border.all(
  146. color: Color.fromRGBO(165, 165, 165, 1),
  147. width: 1,
  148. ),
  149. ),
  150. child: Padding(
  151. padding: const EdgeInsets.symmetric(horizontal: 10.0),
  152. child: TextFormField(
  153. decoration: InputDecoration(
  154. hintText: "Phone Number (11-, not 011-)",
  155. hintStyle: TextStyle(
  156. fontFamily: 'Poppins',
  157. // fontSize: 20,
  158. color: Color.fromRGBO(165, 165, 165, 1),
  159. ),
  160. border: InputBorder.none,
  161. ),
  162. style: TextStyle(
  163. fontFamily: 'Poppins',
  164. // fontSize: 20,
  165. color: Colors.black, // input text color
  166. ),
  167. validator: (val) =>
  168. val!.length != 10 ? 'Enter a valid phone number' : null,
  169. obscureText: false,
  170. onChanged: (val) {
  171. setState(() => phoneNumber = val);
  172. },
  173. ),
  174. ),
  175. ),
  176. // Input IC number
  177. SizedBox(height: 20),
  178. Container(
  179. width: 334,
  180. height: 52,
  181. decoration: BoxDecoration(
  182. borderRadius: BorderRadius.circular(8),
  183. color: Colors.white,
  184. border: Border.all(
  185. color: Color.fromRGBO(165, 165, 165, 1),
  186. width: 1,
  187. ),
  188. ),
  189. child: Padding(
  190. padding: const EdgeInsets.symmetric(horizontal: 10.0),
  191. child: TextFormField(
  192. decoration: InputDecoration(
  193. hintText: "IC Number / Passort Number",
  194. hintStyle: TextStyle(
  195. fontFamily: 'Poppins',
  196. // fontSize: 20,
  197. color: Color.fromRGBO(165, 165, 165, 1),
  198. ),
  199. border: InputBorder.none,
  200. ),
  201. style: TextStyle(
  202. fontFamily: 'Poppins',
  203. // fontSize: 20,
  204. color: Colors.black, // input text color
  205. ),
  206. validator: (val) =>
  207. val!.length != 12 || val!.length != 9 ? 'Enter a valid IC/Passport Number' : null,
  208. obscureText: false,
  209. onChanged: (val) {
  210. setState(() => icNumber = val);
  211. },
  212. ),
  213. ),
  214. ),
  215. // Input Password
  216. SizedBox(height: 20),
  217. Container(
  218. width: 334,
  219. height: 52,
  220. decoration: BoxDecoration(
  221. borderRadius: BorderRadius.circular(8),
  222. color: Colors.white,
  223. border: Border.all(
  224. color: Color.fromRGBO(165, 165, 165, 1),
  225. width: 1,
  226. ),
  227. ),
  228. child: Padding(
  229. padding: const EdgeInsets.symmetric(horizontal: 10.0),
  230. child: TextFormField(
  231. decoration: InputDecoration(
  232. hintText: "Password",
  233. hintStyle: TextStyle(
  234. fontFamily: 'Poppins',
  235. // fontSize: 20,
  236. color: Color.fromRGBO(165, 165, 165, 1),
  237. ),
  238. border: InputBorder.none,
  239. ),
  240. style: TextStyle(
  241. fontFamily: 'Poppins',
  242. // fontSize: 20,
  243. color: Colors.black, // input text color
  244. ),
  245. validator: (val) =>
  246. val!.length < 6 ? 'Enter a password > 6 chars long' : null,
  247. obscureText: true,
  248. onChanged: (val) {
  249. setState(() => password = val);
  250. },
  251. ),
  252. ),
  253. ),
  254. // Check Password
  255. SizedBox(height: 20),
  256. Container(
  257. width: 334,
  258. height: 52,
  259. decoration: BoxDecoration(
  260. borderRadius: BorderRadius.circular(8),
  261. color: Colors.white,
  262. border: Border.all(
  263. color: Color.fromRGBO(165, 165, 165, 1),
  264. width: 1,
  265. ),
  266. ),
  267. child: Padding(
  268. padding: const EdgeInsets.symmetric(horizontal: 10.0),
  269. child: TextFormField(
  270. decoration: InputDecoration(
  271. hintText: "Password again",
  272. hintStyle: TextStyle(
  273. fontFamily: 'Poppins',
  274. // fontSize: 20,
  275. color: Color.fromRGBO(165, 165, 165, 1),
  276. ),
  277. border: InputBorder.none,
  278. ),
  279. style: TextStyle(
  280. fontFamily: 'Poppins',
  281. // fontSize: 20,
  282. color: Colors.black, // input text color
  283. ),
  284. validator: (val) =>
  285. val! != password ? 'Passwords are different' : null,
  286. obscureText: true,
  287. ),
  288. ),
  289. ),
  290. // Register
  291. SizedBox(height: 30),
  292. Container(
  293. width: 334,
  294. height: 65,
  295. decoration: BoxDecoration(
  296. borderRadius: BorderRadius.circular(10),
  297. color: Color.fromRGBO(119, 97, 255, 1.0),
  298. ),
  299. child: TextButton(
  300. onPressed: () async {
  301. if (_formKey.currentState!.validate()) {
  302. setState(() => loading = true);
  303. dynamic result = await _auth.registerWithEmailAndPassword(
  304. email, password);
  305. if (result == null) {
  306. setState(() {
  307. loading = false;
  308. error = 'Please supply a valid email';
  309. });
  310. }
  311. }
  312. // // Handle Next button press
  313. // print(email);
  314. // print(password);
  315. // print(phoneNumber);
  316. //
  317. // Navigator.push(
  318. // context,
  319. // MaterialPageRoute(builder: (context) => userRegisterSuccess()),
  320. // );
  321. },
  322. child: Text(
  323. 'Register',
  324. style: TextStyle(
  325. fontFamily: 'Poppins',
  326. fontSize: 17,
  327. fontWeight: FontWeight.bold,
  328. color: Colors.white,
  329. ),
  330. ),
  331. ),
  332. ),
  333. SizedBox(height: 20),
  334. ],
  335. ),
  336. ),
  337. Text(
  338. error,
  339. style: TextStyle(color: Colors.red, fontSize: 14.0),
  340. ),
  341. ],
  342. ),
  343. )
  344. )
  345. );
  346. }
  347. }