Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

settings_screen.dart 41KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010
  1. import 'dart:convert';
  2. import 'dart:io';
  3. import 'package:flutter/material.dart';
  4. import 'package:flutter/services.dart';
  5. import 'package:fluttertoast/fluttertoast.dart';
  6. import 'package:google_fonts/google_fonts.dart';
  7. import 'package:hris_selfservice_mobile/Screens/Settings/RequestHttp/changePassword_post.dart';
  8. import 'package:hris_selfservice_mobile/Screens/Settings/RequestHttp/changeprofileimage_post.dart';
  9. import 'package:hris_selfservice_mobile/Screens/Settings/RequestHttp/getDetail_post.dart';
  10. import 'package:hris_selfservice_mobile/Screens/Settings/RequestHttp/getProfileImage_post.dart';
  11. import 'package:hris_selfservice_mobile/Screens/Settings/RequestHttp/logout_post.dart';
  12. import 'package:image_picker/image_picker.dart';
  13. import 'package:progress_dialog_null_safe/progress_dialog_null_safe.dart';
  14. import 'package:shared_preferences/shared_preferences.dart';
  15. import '../Login/login_screen.dart';
  16. import '../Settings/inputWidget.dart';
  17. import 'dart:developer' as logDev;
  18. class SettingsScreen extends StatefulWidget {
  19. const SettingsScreen({Key? key}) : super(key: key);
  20. @override
  21. State<SettingsScreen> createState() => _SettingsScreenState();
  22. }
  23. class _SettingsScreenState extends State<SettingsScreen> {
  24. bool visible = false;
  25. bool visiblePersonalInformation = false;
  26. File? _imagePath;
  27. String name = "",
  28. statusDetail = "",
  29. dateOfBirth = "",
  30. phone = "",
  31. email = "",
  32. address = "",
  33. position = "";
  34. var _imageToShow;
  35. @override
  36. initState() {
  37. super.initState();
  38. passwordController.clear();
  39. newPasswordController.clear();
  40. retypeNewPasswordController.clear();
  41. getDetail();
  42. _imageToShow = AssetImage('assets/images/ic_administrator.png');
  43. WidgetsBinding.instance.addPostFrameCallback((_) {
  44. ProgressDialog loading = ProgressDialog(context);
  45. loading = ProgressDialog(context,
  46. type: ProgressDialogType.normal,
  47. isDismissible: false,
  48. showLogs: true);
  49. loading.style(
  50. message: 'Please Wait .....',
  51. borderRadius: 5,
  52. backgroundColor: Colors.white,
  53. progressWidget: CircularProgressIndicator(),
  54. elevation: 10.0,
  55. padding: EdgeInsets.all(10),
  56. insetAnimCurve: Curves.easeInOut,
  57. progress: 0.0,
  58. maxProgress: 100.0,
  59. progressTextStyle: TextStyle(
  60. color: Colors.black, fontSize: 10.0, fontWeight: FontWeight.w400),
  61. messageTextStyle: TextStyle(
  62. color: Colors.black,
  63. fontSize: 15.0,
  64. fontWeight: FontWeight.w600));
  65. loading.show();
  66. _imageToShow = getProfileImage();
  67. });
  68. }
  69. //Get Profile image
  70. getProfileImage() async {
  71. final SharedPreferences prefs = await SharedPreferences.getInstance();
  72. final session = prefs.getString('session');
  73. ProgressDialog loading = ProgressDialog(context);
  74. loading = ProgressDialog(context,
  75. type: ProgressDialogType.normal, isDismissible: false, showLogs: true);
  76. loading.style(
  77. message: 'Please Wait .....',
  78. borderRadius: 5,
  79. backgroundColor: Colors.white,
  80. progressWidget: CircularProgressIndicator(),
  81. elevation: 10.0,
  82. padding: EdgeInsets.all(10),
  83. insetAnimCurve: Curves.easeInOut,
  84. progress: 0.0,
  85. maxProgress: 100.0,
  86. progressTextStyle: TextStyle(
  87. color: Colors.black, fontSize: 10.0, fontWeight: FontWeight.w400),
  88. messageTextStyle: TextStyle(
  89. color: Colors.black, fontSize: 15.0, fontWeight: FontWeight.w600));
  90. GetProfileImage_Post.connectToAPI(session!).then((valueResult) async {
  91. Map<String, dynamic> object = json.decode(valueResult);
  92. if (object.containsKey("result").toString() == "true") {
  93. String status = object['result']['status'].toString();
  94. logDev.log(status, name: "STATUS GET PROFILE");
  95. if (status == "success") {
  96. String photo = object['result']['photo'].toString();
  97. if (photo == "false") {
  98. _imageToShow = AssetImage('assets/images/ic_administrator.png');
  99. logDev.log("PHOTO RESULT FALSE", name: "DECODED BYTES");
  100. } else if (photo != "false") {
  101. Uint8List decodedBytes = Base64Decoder().convert(photo);
  102. logDev.log(decodedBytes.toString(), name: "DECODED BYTES photo");
  103. setState(() {
  104. _imageToShow = Image.memory(decodedBytes, gaplessPlayback: true).image;
  105. });
  106. //_imageToShow = Image.memory(base64Decode(photo));
  107. //logDev.log(_imageToShow.toString(), name: "Image to Show");
  108. //_imageToShow = AssetImage('assets/images/collaboration.png');
  109. }
  110. } else if (status == "failed") {
  111. String message = object['result']['message'].toString();
  112. Fluttertoast.showToast(
  113. msg: message,
  114. toastLength: Toast.LENGTH_LONG,
  115. gravity: ToastGravity.CENTER,
  116. timeInSecForIosWeb: 1,
  117. textColor: Colors.white,
  118. fontSize: 16.0);
  119. }
  120. loading.hide();
  121. } else {
  122. Fluttertoast.showToast(
  123. msg: "Server Response Error",
  124. toastLength: Toast.LENGTH_SHORT,
  125. gravity: ToastGravity.CENTER,
  126. timeInSecForIosWeb: 1,
  127. textColor: Colors.white,
  128. fontSize: 16.0);
  129. loading.hide();
  130. }
  131. });
  132. //return Image.memory(decodedBytes);
  133. loading.hide();
  134. return _imageToShow;
  135. }
  136. //Get Detail
  137. getDetail() async {
  138. final SharedPreferences prefs = await SharedPreferences.getInstance();
  139. final session = prefs.getString('session');
  140. GetDetail_Post.connectToAPI(session!).then((valueResult) async {
  141. Map<String, dynamic> object = json.decode(valueResult);
  142. if (object.containsKey("result").toString() == "true") {
  143. statusDetail = object['result']['status'].toString();
  144. String message = object['result']['message'].toString();
  145. if (statusDetail == "failed" || message == "User Not Found") {
  146. Fluttertoast.showToast(
  147. msg: message + ", Please login again!",
  148. toastLength: Toast.LENGTH_SHORT,
  149. gravity: ToastGravity.CENTER,
  150. timeInSecForIosWeb: 1,
  151. textColor: Colors.white,
  152. fontSize: 16.0);
  153. } else if (statusDetail != "failed") {
  154. name = object['result']['name'].toString();
  155. dateOfBirth = object['result']['date_of_birth'].toString();
  156. phone = object['result']['phone'].toString();
  157. email = object['result']['email'].toString();
  158. address = object['result']['address'].toString();
  159. position = object['result']['position'].toString();
  160. if (name == "false"){
  161. name = "-";
  162. }
  163. if (dateOfBirth == "false"){
  164. dateOfBirth = "-";
  165. }
  166. if (phone == "false"){
  167. phone = "-";
  168. }
  169. if (email == "false"){
  170. email = "-";
  171. }
  172. if (address == "false"){
  173. address = "-";
  174. }
  175. }
  176. } else {
  177. Fluttertoast.showToast(
  178. msg: "Server Response Error",
  179. toastLength: Toast.LENGTH_SHORT,
  180. gravity: ToastGravity.CENTER,
  181. timeInSecForIosWeb: 1,
  182. textColor: Colors.white,
  183. fontSize: 16.0);
  184. }
  185. });
  186. }
  187. @override
  188. Widget build(BuildContext context) {
  189. var size = MediaQuery.of(context).size;
  190. ProgressDialog loading = ProgressDialog(context);
  191. loading = ProgressDialog(context,
  192. type: ProgressDialogType.normal, isDismissible: false, showLogs: true);
  193. loading.style(
  194. message: 'Please Wait .....',
  195. borderRadius: 5,
  196. backgroundColor: Colors.white,
  197. progressWidget: CircularProgressIndicator(),
  198. elevation: 10.0,
  199. padding: EdgeInsets.all(10),
  200. insetAnimCurve: Curves.easeInOut,
  201. progress: 0.0,
  202. maxProgress: 100.0,
  203. progressTextStyle: TextStyle(
  204. color: Colors.black, fontSize: 10.0, fontWeight: FontWeight.w400),
  205. messageTextStyle: TextStyle(
  206. color: Colors.black, fontSize: 15.0, fontWeight: FontWeight.w600));
  207. return Scaffold(
  208. body: SingleChildScrollView(
  209. child: Stack(
  210. children: <Widget>[
  211. Container(
  212. height: size.height * 0.3,
  213. decoration: BoxDecoration(
  214. gradient: LinearGradient(
  215. begin: Alignment.topRight,
  216. end: Alignment.bottomRight,
  217. colors: [
  218. Color(0xFF4858A7),
  219. Color(0xFF6474C6),
  220. ])),
  221. ),
  222. SafeArea(
  223. child: Padding(
  224. padding: EdgeInsets.all(20),
  225. child: Column(
  226. children: <Widget>[
  227. Stack(
  228. alignment: Alignment.topCenter,
  229. children: [
  230. Container(
  231. margin: EdgeInsets.only(top: (((size.width - 20) * 0.33) * 0.5)),
  232. child: Card(
  233. elevation: 15,
  234. child: Container(
  235. height: (size.height * 0.28) * .7,
  236. width: size.width - 20,
  237. padding: EdgeInsets.all(15),
  238. decoration: BoxDecoration(
  239. color: Colors.white,
  240. borderRadius:
  241. BorderRadius.all(Radius.circular(10))),
  242. child: Column(
  243. mainAxisAlignment: MainAxisAlignment.end,
  244. crossAxisAlignment: CrossAxisAlignment.center,
  245. children: <Widget>[
  246. Text(name,
  247. maxLines: 2,
  248. overflow: TextOverflow.ellipsis,
  249. textAlign: TextAlign.center,
  250. style: GoogleFonts.inter(
  251. fontSize: 18,
  252. color: Colors.black,
  253. fontWeight: FontWeight.bold),
  254. ),
  255. Text(position,
  256. textAlign: TextAlign.center,
  257. style: GoogleFonts.inter(
  258. fontSize: 17, color: Colors.black),
  259. ),
  260. ],
  261. )),
  262. ),
  263. ),
  264. Container(
  265. height: (size.width - 20) * 0.33,
  266. width: (size.width - 20) * 0.33,
  267. decoration: BoxDecoration(
  268. color: Colors.black,
  269. image: DecorationImage(
  270. image: _imageToShow,
  271. fit: BoxFit.fill,
  272. ),
  273. shape: BoxShape.circle,
  274. ),
  275. ),
  276. InkWell(
  277. child: Container(
  278. height: ((size.width - 20) * 0.33) * 0.25,
  279. width: ((size.width - 20) * 0.33) * 0.25,
  280. margin: EdgeInsets.only(
  281. top: (((size.width - 20) * 0.33) - 20),
  282. left: ((size.width - 20) * 0.33) - 10),
  283. decoration: BoxDecoration(
  284. color: Colors.yellow,
  285. image: DecorationImage(
  286. image: AssetImage('assets/images/ic_camera.png'),
  287. scale: 3,
  288. fit: BoxFit.scaleDown,
  289. ),
  290. shape: BoxShape.circle,
  291. ),
  292. ),
  293. onTap: () async {
  294. final SharedPreferences prefs =
  295. await SharedPreferences.getInstance();
  296. final String? session = prefs.getString('session');
  297. final ImagePicker _picker = ImagePicker();
  298. final XFile? imagePicked = await _picker.pickImage(
  299. source: ImageSource.gallery);
  300. if (imagePicked != null) {
  301. _imagePath = File(imagePicked.path);
  302. List<int> imageBytes =
  303. _imagePath!.readAsBytesSync();
  304. String base64Image = base64Encode(imageBytes);
  305. logDev.log(base64Image, name: "String base64");
  306. await loading.show();
  307. ChangeProfileImage_Post.connectToAPI(
  308. session!, base64Image)
  309. .then((valueResult) async {
  310. Map<String, dynamic> object =
  311. json.decode(valueResult);
  312. if (object.containsKey("result").toString() == "true") {
  313. String status = object['result']['status'].toString();
  314. String message = object['result']['message'].toString();
  315. if (status == "success") {
  316. _imageToShow =
  317. FileImage(File(imagePicked.path));
  318. Fluttertoast.showToast(
  319. msg: message,
  320. toastLength: Toast.LENGTH_LONG,
  321. gravity: ToastGravity.CENTER,
  322. timeInSecForIosWeb: 1,
  323. textColor: Colors.white,
  324. fontSize: 16.0);
  325. await loading.hide();
  326. } else if (status == "failed") {
  327. Fluttertoast.showToast(
  328. msg: message,
  329. toastLength: Toast.LENGTH_LONG,
  330. gravity: ToastGravity.CENTER,
  331. timeInSecForIosWeb: 1,
  332. textColor: Colors.white,
  333. fontSize: 16.0);
  334. await loading.hide();
  335. }
  336. } else {
  337. Fluttertoast.showToast(
  338. msg: "Server Response Error",
  339. toastLength: Toast.LENGTH_SHORT,
  340. gravity: ToastGravity.CENTER,
  341. timeInSecForIosWeb: 1,
  342. textColor: Colors.white,
  343. fontSize: 16.0);
  344. await loading.hide();
  345. }
  346. setState(() {});
  347. });
  348. } else if (imagePicked == null) {
  349. //_imagePath = await getImageFileFromAssets('assets/images/ic_administrator.png') as File?;
  350. }
  351. },
  352. )
  353. ],
  354. ),
  355. InkWell(
  356. child: roundedRectButton(
  357. "Personal Information", Gradients1, 20, 5),
  358. onTap: () async {
  359. setState(() {
  360. visiblePersonalInformation =
  361. !visiblePersonalInformation;
  362. });
  363. },
  364. ),
  365. Visibility(
  366. visible: visiblePersonalInformation,
  367. child: Container(
  368. margin: EdgeInsets.only(top: 10),
  369. width: size.width - 50,
  370. padding: EdgeInsets.all(15),
  371. decoration: BoxDecoration(
  372. color: Color(0xFFD9D9D9),
  373. borderRadius: BorderRadius.all(Radius.circular(5))),
  374. child: Column(
  375. children: [
  376. Column(
  377. crossAxisAlignment: CrossAxisAlignment.start,
  378. children: <Widget>[
  379. Padding(
  380. padding: EdgeInsets.only(bottom: 5),
  381. child: Text(
  382. "Name",
  383. style: TextStyle(
  384. fontSize: 16, color: Colors.black87),
  385. ),
  386. ),
  387. Stack(
  388. alignment: Alignment.bottomRight,
  389. children: <Widget>[
  390. roundDetail(name, 0, 5, 3),
  391. ],
  392. ),
  393. ],
  394. ),
  395. Column(
  396. crossAxisAlignment: CrossAxisAlignment.start,
  397. children: <Widget>[
  398. Padding(
  399. padding: EdgeInsets.only(bottom: 5),
  400. child: Text(
  401. "Status",
  402. style: TextStyle(
  403. fontSize: 16, color: Colors.black87),
  404. ),
  405. ),
  406. Stack(
  407. alignment: Alignment.bottomRight,
  408. children: <Widget>[
  409. roundDetail(statusDetail, 0, 5, 3),
  410. ],
  411. ),
  412. ],
  413. ),
  414. Column(
  415. crossAxisAlignment: CrossAxisAlignment.start,
  416. children: <Widget>[
  417. Padding(
  418. padding: EdgeInsets.only(bottom: 5),
  419. child: Text(
  420. "Date of Birth",
  421. style: TextStyle(
  422. fontSize: 16, color: Colors.black87),
  423. ),
  424. ),
  425. Stack(
  426. alignment: Alignment.bottomRight,
  427. children: <Widget>[
  428. roundDetail(dateOfBirth, 0, 5, 3),
  429. ],
  430. ),
  431. ],
  432. ),
  433. Column(
  434. crossAxisAlignment: CrossAxisAlignment.start,
  435. children: <Widget>[
  436. Padding(
  437. padding: EdgeInsets.only(bottom: 5),
  438. child: Text(
  439. "Phone Number",
  440. style: TextStyle(
  441. fontSize: 16, color: Colors.black87),
  442. ),
  443. ),
  444. Stack(
  445. alignment: Alignment.bottomRight,
  446. children: <Widget>[
  447. roundDetail(phone, 0, 5, 3),
  448. ],
  449. ),
  450. ],
  451. ),
  452. Column(
  453. crossAxisAlignment: CrossAxisAlignment.start,
  454. children: <Widget>[
  455. Padding(
  456. padding: EdgeInsets.only(bottom: 5),
  457. child: Text(
  458. "Email Address",
  459. style: TextStyle(
  460. fontSize: 16, color: Colors.black87),
  461. ),
  462. ),
  463. Stack(
  464. alignment: Alignment.bottomRight,
  465. children: <Widget>[
  466. roundDetail(email, 0, 5, 3),
  467. ],
  468. ),
  469. ],
  470. ),
  471. Column(
  472. crossAxisAlignment: CrossAxisAlignment.start,
  473. children: <Widget>[
  474. Padding(
  475. padding: EdgeInsets.only(bottom: 5),
  476. child: Text(
  477. "Address",
  478. style: TextStyle(
  479. fontSize: 16, color: Colors.black87),
  480. ),
  481. ),
  482. Stack(
  483. alignment: Alignment.bottomRight,
  484. children: <Widget>[
  485. roundDetail(address, 0, 5, 3),
  486. ],
  487. ),
  488. ],
  489. ),
  490. /*InkWell(
  491. child: roundedRectButton(
  492. "Save Password", Gradients2, 10, 10),
  493. onTap: () {
  494. if (!validateFormSavePassword(context)) {
  495. return;
  496. } else if (validateFormSavePassword(context)) {
  497. if (newPasswordController.text.toString() ==
  498. retypeNewPasswordController.text
  499. .toString()) {
  500. if (passwordController.text.toString() ==
  501. newPasswordController.text
  502. .toString() ||
  503. passwordController.text.toString() ==
  504. retypeNewPasswordController.text
  505. .toString()) {
  506. Fluttertoast.showToast(
  507. msg:
  508. "Your new password is the same with your old password, please change with new password!",
  509. toastLength: Toast.LENGTH_LONG,
  510. gravity: ToastGravity.CENTER,
  511. timeInSecForIosWeb: 1,
  512. textColor: Colors.white,
  513. fontSize: 16.0);
  514. } else {
  515. showAlertDialogSavePassword(context);
  516. }
  517. } else if (newPasswordController.text
  518. .toString() !=
  519. retypeNewPasswordController.text
  520. .toString()) {
  521. Fluttertoast.showToast(
  522. msg:
  523. "Your retype password was entered incorrectly.\nPlease enter it again!",
  524. toastLength: Toast.LENGTH_LONG,
  525. gravity: ToastGravity.CENTER,
  526. timeInSecForIosWeb: 1,
  527. textColor: Colors.white,
  528. fontSize: 16.0);
  529. }
  530. }
  531. }),*/
  532. ],
  533. ),
  534. ),
  535. ),
  536. InkWell(
  537. child:
  538. roundedRectButton("Edit Password", Gradients1, 10, 5),
  539. onTap: () {
  540. setState(() {
  541. visible = !visible;
  542. });
  543. },
  544. ),
  545. Visibility(
  546. visible: visible,
  547. child: Container(
  548. margin: EdgeInsets.only(top: 10),
  549. width: size.width - 50,
  550. padding: EdgeInsets.all(15),
  551. decoration: BoxDecoration(
  552. color: Color(0xFFD9D9D9),
  553. borderRadius: BorderRadius.all(Radius.circular(5))),
  554. child: Column(
  555. children: [
  556. Column(
  557. crossAxisAlignment: CrossAxisAlignment.start,
  558. children: <Widget>[
  559. Padding(
  560. padding: EdgeInsets.only(bottom: 5),
  561. child: Text(
  562. "Type your current Password",
  563. style: TextStyle(
  564. fontSize: 16, color: Colors.black87),
  565. ),
  566. ),
  567. Stack(
  568. alignment: Alignment.bottomRight,
  569. children: <Widget>[
  570. InputWidgetCurrentPassword(
  571. "Current Password"),
  572. ],
  573. ),
  574. ],
  575. ),
  576. Column(
  577. crossAxisAlignment: CrossAxisAlignment.start,
  578. children: <Widget>[
  579. Padding(
  580. padding: EdgeInsets.only(bottom: 5),
  581. child: Text(
  582. "Type your New Password",
  583. style: TextStyle(
  584. fontSize: 16, color: Colors.black87),
  585. ),
  586. ),
  587. Stack(
  588. alignment: Alignment.bottomRight,
  589. children: <Widget>[
  590. InputWidgetNewPassword("New Password"),
  591. ],
  592. ),
  593. ],
  594. ),
  595. Column(
  596. crossAxisAlignment: CrossAxisAlignment.start,
  597. children: <Widget>[
  598. Padding(
  599. padding: EdgeInsets.only(bottom: 5),
  600. child: Text(
  601. "Re-type your New Password",
  602. style: TextStyle(
  603. fontSize: 16, color: Colors.black87),
  604. ),
  605. ),
  606. Stack(
  607. alignment: Alignment.bottomRight,
  608. children: <Widget>[
  609. InputWidgetRetypeNewPassword(
  610. "Re-type New Password"),
  611. ],
  612. ),
  613. ],
  614. ),
  615. InkWell(
  616. child: roundedRectButton(
  617. "Save Password", Gradients2, 10, 10),
  618. onTap: () {
  619. if (!validateFormSavePassword(context)) {
  620. return;
  621. } else if (validateFormSavePassword(context)) {
  622. if (newPasswordController.text.toString() ==
  623. retypeNewPasswordController.text
  624. .toString()) {
  625. if (passwordController.text.toString() ==
  626. newPasswordController.text
  627. .toString() ||
  628. passwordController.text.toString() ==
  629. retypeNewPasswordController.text
  630. .toString()) {
  631. Fluttertoast.showToast(
  632. msg:
  633. "Your new password is the same with your old password, please change with new password!",
  634. toastLength: Toast.LENGTH_LONG,
  635. gravity: ToastGravity.CENTER,
  636. timeInSecForIosWeb: 1,
  637. textColor: Colors.white,
  638. fontSize: 16.0);
  639. } else {
  640. showAlertDialogSavePassword(context);
  641. }
  642. } else if (newPasswordController.text
  643. .toString() !=
  644. retypeNewPasswordController.text
  645. .toString()) {
  646. Fluttertoast.showToast(
  647. msg:
  648. "Your retype password was entered incorrectly.\nPlease enter it again!",
  649. toastLength: Toast.LENGTH_LONG,
  650. gravity: ToastGravity.CENTER,
  651. timeInSecForIosWeb: 1,
  652. textColor: Colors.white,
  653. fontSize: 16.0);
  654. }
  655. }
  656. }),
  657. ],
  658. ),
  659. ),
  660. ),
  661. InkWell(
  662. child: roundedRectButton("Logout", Gradients1, 10, 5),
  663. onTap: () {
  664. showAlertDialogLogout(context);
  665. }),
  666. ],
  667. ),
  668. ),
  669. ),
  670. ],
  671. ),
  672. ));
  673. }
  674. }
  675. Widget roundedRectButton(String title, List<Color> gradient, double marginTop,
  676. double radiusCircular) {
  677. return Builder(builder: (BuildContext mContext) {
  678. return Align(
  679. alignment: Alignment.center,
  680. child: Stack(
  681. children: <Widget>[
  682. Container(
  683. margin: EdgeInsets.only(top: marginTop),
  684. alignment: Alignment.center,
  685. height: 55,
  686. width: MediaQuery.of(mContext).size.width - 50,
  687. decoration: ShapeDecoration(
  688. shape: RoundedRectangleBorder(
  689. borderRadius:
  690. BorderRadius.all(Radius.circular(radiusCircular))),
  691. gradient: LinearGradient(
  692. colors: gradient,
  693. begin: Alignment.topLeft,
  694. end: Alignment.bottomRight),
  695. ),
  696. child: Padding(
  697. padding: EdgeInsets.fromLTRB(10, 3, 10, 3),
  698. child: Text(title,
  699. style: TextStyle(
  700. color: Colors.white,
  701. fontSize: 19,
  702. fontWeight: FontWeight.w500)),
  703. ),
  704. padding: EdgeInsets.all(10),
  705. )
  706. ],
  707. ),
  708. );
  709. });
  710. }
  711. Widget roundDetail(String detail, double marginTop, double marginBottom,
  712. double radiusCircular) {
  713. return Builder(builder: (BuildContext mContext) {
  714. return Align(
  715. alignment: Alignment.center,
  716. child: Stack(
  717. children: <Widget>[
  718. Container(
  719. margin: EdgeInsets.only(top: marginTop, bottom: marginBottom),
  720. alignment: Alignment.centerLeft,
  721. height: 45,
  722. width: MediaQuery.of(mContext).size.width - 50,
  723. decoration: ShapeDecoration(
  724. shape: RoundedRectangleBorder(
  725. borderRadius:
  726. BorderRadius.all(Radius.circular(radiusCircular))),
  727. color: Colors.blueGrey,
  728. ),
  729. child: Padding(
  730. padding: EdgeInsets.fromLTRB(3, 3, 3, 3),
  731. child: Text(detail,
  732. style: TextStyle(
  733. color: Colors.white,
  734. fontSize: 15,
  735. fontWeight: FontWeight.w500)),
  736. ),
  737. padding: EdgeInsets.all(10),
  738. )
  739. ],
  740. ),
  741. );
  742. });
  743. }
  744. const List<Color> Gradients1 = [
  745. //Color(0xFF0EDED2),
  746. Color(0xFF03A0FE),
  747. Color(0xFF4858A7),
  748. //Color(0xFF6474C6),
  749. ];
  750. const List<Color> Gradients2 = [
  751. Color(0xFFFF9945),
  752. Color(0xFFFc6076),
  753. ];
  754. //Save New Password
  755. showAlertDialogSavePassword(BuildContext context) {
  756. // set up the button
  757. Widget okButton = TextButton(
  758. child: Text("Yes"),
  759. onPressed: () async {
  760. ProgressDialog loading = ProgressDialog(context);
  761. loading = ProgressDialog(context,
  762. type: ProgressDialogType.normal,
  763. isDismissible: false,
  764. showLogs: true);
  765. loading.style(
  766. message: 'Please Wait .....',
  767. borderRadius: 5,
  768. backgroundColor: Colors.white,
  769. progressWidget: CircularProgressIndicator(),
  770. elevation: 10.0,
  771. padding: EdgeInsets.all(10),
  772. insetAnimCurve: Curves.easeInOut,
  773. progress: 0.0,
  774. maxProgress: 100.0,
  775. progressTextStyle: TextStyle(
  776. color: Colors.black, fontSize: 10.0, fontWeight: FontWeight.w400),
  777. messageTextStyle: TextStyle(
  778. color: Colors.black,
  779. fontSize: 15.0,
  780. fontWeight: FontWeight.w600));
  781. await loading.show();
  782. final SharedPreferences prefs = await SharedPreferences.getInstance();
  783. final session = prefs.getString('session');
  784. ChangePassword_Post.connectToAPI(passwordController.text.toString(),
  785. newPasswordController.text.toString(), session!)
  786. .then((valueResult) async {
  787. Map<String, dynamic> object = json.decode(valueResult);
  788. if (object.containsKey("result").toString() == "true") {
  789. String status = object['result']['status'].toString();
  790. String message = object['result']['message'].toString();
  791. if (status == "success") {
  792. Fluttertoast.showToast(
  793. msg: message + ", Please login again!",
  794. toastLength: Toast.LENGTH_SHORT,
  795. gravity: ToastGravity.CENTER,
  796. timeInSecForIosWeb: 1,
  797. textColor: Colors.white,
  798. fontSize: 16.0);
  799. passwordController.clear();
  800. newPasswordController.clear();
  801. retypeNewPasswordController.clear();
  802. final session = await prefs.remove('session');
  803. await loading.hide();
  804. Navigator.of(context, rootNavigator: true).pop();
  805. Navigator.pushReplacement(
  806. context, MaterialPageRoute(builder: (context) => LoginView()));
  807. } else if (status == "failed") {
  808. Fluttertoast.showToast(
  809. msg: message,
  810. toastLength: Toast.LENGTH_SHORT,
  811. gravity: ToastGravity.CENTER,
  812. timeInSecForIosWeb: 1,
  813. textColor: Colors.white,
  814. fontSize: 16.0);
  815. Navigator.of(context, rootNavigator: true).pop();
  816. await loading.hide();
  817. }
  818. } else {
  819. Fluttertoast.showToast(
  820. msg: "Server Response Error",
  821. toastLength: Toast.LENGTH_SHORT,
  822. gravity: ToastGravity.CENTER,
  823. timeInSecForIosWeb: 1,
  824. textColor: Colors.white,
  825. fontSize: 16.0);
  826. await loading.hide();
  827. }
  828. });
  829. },
  830. );
  831. Widget noButton = TextButton(
  832. child: Text("No"),
  833. onPressed: () {
  834. Navigator.of(context, rootNavigator: true).pop();
  835. },
  836. );
  837. // set up the AlertDialog
  838. AlertDialog alert = AlertDialog(
  839. title: Text("Employee Self Service"),
  840. content: Text("Save New Password?"),
  841. actions: [noButton, okButton],
  842. );
  843. // show the dialog
  844. showDialog(
  845. context: context,
  846. builder: (BuildContext context) {
  847. return alert;
  848. },
  849. );
  850. }
  851. //Validate Form Change Password
  852. bool validateFormSavePassword(BuildContext context) {
  853. bool result = true;
  854. if (passwordController.text.toString().isEmpty) {
  855. Fluttertoast.showToast(
  856. msg: "Old Password Required!",
  857. toastLength: Toast.LENGTH_SHORT,
  858. gravity: ToastGravity.CENTER,
  859. timeInSecForIosWeb: 1,
  860. textColor: Colors.white,
  861. fontSize: 16.0);
  862. result = false;
  863. }
  864. if (newPasswordController.text.toString().isEmpty) {
  865. Fluttertoast.showToast(
  866. msg: "New Password Required",
  867. toastLength: Toast.LENGTH_SHORT,
  868. gravity: ToastGravity.CENTER,
  869. timeInSecForIosWeb: 1,
  870. textColor: Colors.white,
  871. fontSize: 16.0);
  872. result = false;
  873. }
  874. if (retypeNewPasswordController.text.toString().isEmpty) {
  875. Fluttertoast.showToast(
  876. msg: "Retype New Password Required",
  877. toastLength: Toast.LENGTH_SHORT,
  878. gravity: ToastGravity.CENTER,
  879. timeInSecForIosWeb: 1,
  880. textColor: Colors.white,
  881. fontSize: 16.0);
  882. result = false;
  883. }
  884. return result;
  885. }
  886. //LOGOUT
  887. showAlertDialogLogout(BuildContext context) {
  888. // set up the button
  889. Widget okButton = TextButton(
  890. child: Text("Yes"),
  891. onPressed: () async {
  892. ProgressDialog loading = ProgressDialog(context);
  893. loading = ProgressDialog(context,
  894. type: ProgressDialogType.normal,
  895. isDismissible: false,
  896. showLogs: true);
  897. loading.style(
  898. message: 'Please Wait .....',
  899. borderRadius: 5,
  900. backgroundColor: Colors.white,
  901. progressWidget: CircularProgressIndicator(),
  902. elevation: 10.0,
  903. padding: EdgeInsets.all(10),
  904. insetAnimCurve: Curves.easeInOut,
  905. progress: 0.0,
  906. maxProgress: 100.0,
  907. progressTextStyle: TextStyle(
  908. color: Colors.black, fontSize: 10.0, fontWeight: FontWeight.w400),
  909. messageTextStyle: TextStyle(
  910. color: Colors.black,
  911. fontSize: 15.0,
  912. fontWeight: FontWeight.w600));
  913. await loading.show();
  914. final SharedPreferences prefs = await SharedPreferences.getInstance();
  915. final session = prefs.getString('session');
  916. Logout_Post.connectToAPI(session!).then((valueResult) async {
  917. Map<String, dynamic> object = json.decode(valueResult);
  918. if (object.containsKey("result").toString() == "true") {
  919. String status = object['result']['status'].toString();
  920. if (status == "success") {
  921. final session = await prefs.remove('session');
  922. Navigator.of(context, rootNavigator: true).pop();
  923. await loading.hide();
  924. Navigator.pushAndRemoveUntil(
  925. context,
  926. MaterialPageRoute(builder: (context) => LoginView()),
  927. (route) => false);
  928. } else if (status == "failed") {
  929. String message = object['result']['message'].toString();
  930. Fluttertoast.showToast(
  931. msg: message,
  932. toastLength: Toast.LENGTH_SHORT,
  933. gravity: ToastGravity.CENTER,
  934. timeInSecForIosWeb: 1,
  935. textColor: Colors.white,
  936. fontSize: 16.0);
  937. await loading.hide();
  938. Navigator.of(context, rootNavigator: true).pop();
  939. }
  940. } else {
  941. Fluttertoast.showToast(
  942. msg: "Server Response Error",
  943. toastLength: Toast.LENGTH_SHORT,
  944. gravity: ToastGravity.CENTER,
  945. timeInSecForIosWeb: 1,
  946. textColor: Colors.white,
  947. fontSize: 16.0);
  948. await loading.hide();
  949. Navigator.of(context, rootNavigator: true).pop();
  950. }
  951. });
  952. },
  953. );
  954. Widget noButton = TextButton(
  955. child: Text("No"),
  956. onPressed: () {
  957. Navigator.of(context, rootNavigator: true).pop();
  958. },
  959. );
  960. // set up the AlertDialog
  961. AlertDialog alert = AlertDialog(
  962. title: Text("Employee Self Service"),
  963. content: Text("Are you sure you want to logout from this Application?"),
  964. //content: Text("Apakah Anda yakin ingin keluar dari aplikasi ini?"),
  965. actions: [noButton, okButton],
  966. );
  967. // show the dialog
  968. showDialog(
  969. context: context,
  970. builder: (BuildContext context) {
  971. return alert;
  972. },
  973. );
  974. }