From ba5d6fa38b419f195dd8b97d2f2c6046151364b4 Mon Sep 17 00:00:00 2001 From: kicap Date: Thu, 9 Nov 2023 02:42:23 +0800 Subject: [PATCH] first commit --- .gitignore | 55 + .metadata | 45 + README.md | 16 + analysis_options.yaml | 29 + assets/logo.png | Bin 0 -> 89248 bytes lib/app/app.bottomsheets.dart | 30 + lib/app/app.dart | 59 ++ lib/app/app.dialogs.dart | 25 + lib/app/app.locator.dart | 41 + lib/app/app.logger.dart | 159 +++ lib/app/app.router.dart | 402 ++++++++ lib/app/core/custom_base_view_model.dart | 62 ++ lib/app/themes/app_colors.dart | 30 + lib/app/themes/app_text.dart | 44 + lib/app/themes/app_theme.dart | 126 +++ lib/main.dart | 52 + lib/model/area_model.dart | 44 + lib/model/caleg_model.dart | 50 + lib/model/my_response.model.dart | 21 + lib/model/pemilih_model.dart | 75 ++ lib/model/tim_survei_model.dart | 57 ++ lib/services/global_var.dart | 3 + lib/services/http_services.dart | 73 ++ lib/services/my_easyloading.dart | 39 + lib/services/other_function.dart | 16 + lib/services/shared_prefs.dart | 25 + .../area_tps/area_tps_view.dart | 144 +++ .../area_tps/area_tps_view_model.dart | 52 + .../caleg_index_tracking_view.dart | 93 ++ .../caleg_index_tracking_view_model.dart | 97 ++ .../log_suara/log_suara_view.dart | 161 +++ .../log_suara/log_suara_view_model.dart | 48 + .../ganti_password_dialog_view.dart | 191 ++++ .../ganti_password_dialog_view_model.dart | 48 + .../pengaturan_caleg2_view.dart | 26 + .../pengaturan_caleg2_view_model.dart | 5 + .../pengaturan_caleg_view.dart | 206 ++++ .../pengaturan_caleg_view_model.dart | 52 + .../tim_survei/tim_survei_view.dart | 132 +++ .../tim_survei/tim_survei_view_model.dart | 59 ++ .../detail_suara_bottom_sheet_view.dart | 141 +++ .../detail_suara_bottom_sheet_view_model.dart | 54 + ...etail_suara_pemilih_bottom_sheet_view.dart | 164 +++ ...suara_pemilih_bottom_sheet_view_model.dart | 23 + .../views/login_screen/login_screen_view.dart | 129 +++ .../login_screen/login_screen_view_model.dart | 64 ++ .../splash_screen/splash_screen_view.dart | 92 ++ .../splash_screen_view_model.dart | 13 + lib/ui/widgets/my_button.dart | 38 + lib/ui/widgets/my_textformfield.dart | 85 ++ lib/ui/widgets/top_container.dart | 73 ++ pubspec.lock | 938 ++++++++++++++++++ pubspec.yaml | 105 ++ test/widget_test.dart | 30 + 54 files changed, 4841 insertions(+) create mode 100644 .gitignore create mode 100644 .metadata create mode 100644 README.md create mode 100644 analysis_options.yaml create mode 100644 assets/logo.png create mode 100644 lib/app/app.bottomsheets.dart create mode 100644 lib/app/app.dart create mode 100644 lib/app/app.dialogs.dart create mode 100644 lib/app/app.locator.dart create mode 100644 lib/app/app.logger.dart create mode 100644 lib/app/app.router.dart create mode 100755 lib/app/core/custom_base_view_model.dart create mode 100755 lib/app/themes/app_colors.dart create mode 100644 lib/app/themes/app_text.dart create mode 100755 lib/app/themes/app_theme.dart create mode 100644 lib/main.dart create mode 100644 lib/model/area_model.dart create mode 100644 lib/model/caleg_model.dart create mode 100644 lib/model/my_response.model.dart create mode 100644 lib/model/pemilih_model.dart create mode 100644 lib/model/tim_survei_model.dart create mode 100644 lib/services/global_var.dart create mode 100644 lib/services/http_services.dart create mode 100644 lib/services/my_easyloading.dart create mode 100644 lib/services/other_function.dart create mode 100644 lib/services/shared_prefs.dart create mode 100644 lib/ui/views/caleg_index_tracking/area_tps/area_tps_view.dart create mode 100644 lib/ui/views/caleg_index_tracking/area_tps/area_tps_view_model.dart create mode 100644 lib/ui/views/caleg_index_tracking/caleg_index_tracking_view.dart create mode 100644 lib/ui/views/caleg_index_tracking/caleg_index_tracking_view_model.dart create mode 100644 lib/ui/views/caleg_index_tracking/log_suara/log_suara_view.dart create mode 100644 lib/ui/views/caleg_index_tracking/log_suara/log_suara_view_model.dart create mode 100644 lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view.dart create mode 100644 lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view_model.dart create mode 100644 lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view.dart create mode 100644 lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view_model.dart create mode 100644 lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view.dart create mode 100644 lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view_model.dart create mode 100644 lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view.dart create mode 100644 lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view_model.dart create mode 100644 lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view.dart create mode 100644 lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view_model.dart create mode 100644 lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view.dart create mode 100644 lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view_model.dart create mode 100644 lib/ui/views/login_screen/login_screen_view.dart create mode 100644 lib/ui/views/login_screen/login_screen_view_model.dart create mode 100644 lib/ui/views/splash_screen/splash_screen_view.dart create mode 100644 lib/ui/views/splash_screen/splash_screen_view_model.dart create mode 100644 lib/ui/widgets/my_button.dart create mode 100644 lib/ui/widgets/my_textformfield.dart create mode 100644 lib/ui/widgets/top_container.dart create mode 100644 pubspec.lock create mode 100644 pubspec.yaml create mode 100644 test/widget_test.dart diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b85e742 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release + +.env +/android +/ios +/macos +/web +/linux +/windows + + + diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..5835264 --- /dev/null +++ b/.metadata @@ -0,0 +1,45 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f" + channel: "beta" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + base_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + - platform: android + create_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + base_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + - platform: ios + create_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + base_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + - platform: linux + create_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + base_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + - platform: macos + create_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + base_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + - platform: web + create_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + base_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + - platform: windows + create_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + base_revision: 8fcb74dbc16b9edb3d3f14c11c627d9e8f24fb1f + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/README.md b/README.md new file mode 100644 index 0000000..4956d7d --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# cek_suara_caleg + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) + +For help getting started with Flutter development, view the +[online documentation](https://docs.flutter.dev/), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..61b6c4d --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,29 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/assets/logo.png b/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..b7efb4a2840ec8a1c7034cbd042f8006aac674d5 GIT binary patch literal 89248 zcmY&dkK`7#pZ{`?|W1xHsa^Y0%#D zQ8sB*1F4Pda-;90 zN6EDU+0+x9&KPyPuhLA>c+S~^`SFLGMmJ4=Z!gnqMe|^GMgc$Jf=D%>aDN*bCc1W;p_6UuFR_(YdV&_le-*LKM@1(G3CyclO03%^91gAXI2q?uFqzk z#iBp^M>p+n-|Xgu-jEPu7GkA|nv?C5ED<#~?-WGGQ1$@j>pBfVmxsoJdQ}x*rRC^3iCPed@=h z^ouc;5M^t|R2u!2{-6!bP6{O^409k%xCevv9k%g1Ml%%JIt=s&+Avs$Pps>K*m18! zN%64#8*<+!23CHeDTQ~*#b6KOw14XyV7$)Gjldi*^a*zPmGV2(Y=64nuZM-vgTM5n z<0ywZlZx~MYQJd45pKi4iC`!K5)r9HK1xF42p{GumjcQ|4)Vn97K#;Jp@!>=QpisAW!-xptqh3N&y z7vmE|vFU8z$Zep@FCWJ6Q*B+_p2l9o9;+F@9di}^Bnqwf{P)nQ>5aHInlGYIOb!_> zRus~=V9Ag4hD>?!Z=-WLH0arp_T-qv=x0rPri~rTvYq&M-~uOs}itUL2;uu6m)W zTaj9&nddI*AbDDbsXrhYUini=yGXUbS#>{TvYt(CL7YdGN5rGfG4c#zy8^q>O{ z9Z??P1kB$41>2qBoy#4c8k3rWTIT`v4Cf3(dDYBrsYmJQjP&&4jQI3w+52gq>8a_a zGPkm|DPhZ0%V6tmt6vk`Ur(J;ZDWQ2$C>dwq2T4&V2%-X3U&>P<0-&+=IrF`+0@`< z`6O?_rE12vqr9y04w3udt3p&Ykeozrod~#a)HvjIPXchX)Z~J-*qOuS(S@q@vNfpn zy=R}NlIIuCBhTv#q&vn(%15HRjyn~2UU)KiIQUBVCX~|<#vbe*y^zO{s_3X_qbSa| zF8Bg$>hDqCjdFeF=(PUG>A?lU&N?m`)~~FDY@s7W!*IK8 zBcV*=xbnCkBjFYnMYwR{D;j`@5x{|stcGIpEFwjwd=`q4S}6ckht)SowE zI63j1b)shW6h5-=wXv;PmfJ@@51vX_-rbAYg&$hKyytK6@QP*9Wg>?PJo?UW&I!QL zEe9=*x`%p2pWifzHg$YfcGGi<@d~(A z`so5P-YVG2*et=jV_a^r=l>y?$Gve!z9r@n$;>#bnb~=BgV{@!NhN_f5zZRU6n?^! zmkB?5G3j5_AXCz8bIg2AQf$O2ZNY@tq~5s-G3Tg~QA+ssx5o~eGvRYlG& zxht71>Xb*8Tgthj6QJ%8fJp(SI;cuw6eHcUHM~D(3#}Wji>NCc%1k-Z<)nIz$zdw8 z5Lw&S%f2u+?f+A>R-Y|>D_JGsoSKXGS~A-)`<>mVmW4C9A(}Iv^Dg}W?H_s*I=MR4 zjh~#0z=L;cG?I6zK1%I zI1ysKT%64|rAuLpwDa7}mdC~AawIbDRCqF#G7QpdcDtWDZ<0ndk_>znASQ!9NoU+qeoQi!2L zDMN|xYsv+l()qgT2SH_OE{l zd8}SO)F6-I#ps*p{c7E|FLV0to4bW@Pr?gN1kV==2yJEI(>un`=JMW*xKEnW=%~tW z!?iz}?0*1m94gJ(tx7hNbquuK?y28Zf}5N^k1cCC;rTReXHRxS+^1g?`m#UP=pB#> z2p$OV{{HkMh|hSrhDONr`NFq-kL=d4H+WR^oMK4=MD0VvBBX!g{vb7*kXF(w#PF

>CpDME!7R{ zealJB34>6o@80d(i__zhD1{tfnCsy4`&fH3dPpRRWG|`Z1O1b1vTJgSRTuageSyf2i(w0Rmuk&-IB%Giakp(nj?;4nVG;=IDafGb2q zR2Id+Kz~$HEl2r)zWRJT#-2AZO;L(0SrLn4HFCw>q5J0bX@ddDjPtXQ6Je z$~C@C2X1jo5Dg|ul7UT&eAch)X2+-#svwkh~ksR*thaQyU`vgeSIHW+xeBF?EIWE|wG7Rhg zKKTTLbWs5p&W?GG1Oq!$+`Z8aXAo}0+#|bCcRs1(6W+@S+;(u%W3Cx}a%pK7O{0FgQ?l-D&num4G z|07U{hnWF$-}S#yNZ6Qk5WQdY{lWBqhXyz;Qv#o${sjSA40_~kE(q=4|4IM(_Rrcd zOPhA7pkL;Bv9<6&2>dZA7Ob1cVn0{~v9U*xjlAr~CiWA_TVJEr{%Y$bI*t z8c!h$pq3_IdHt_&Z>oT&-c#<~A;?k?WBkbeGRU8cYFq`d!)lXdCh>=T?f!xM z5goGH7uKymqdjuQ3I98@zW~XFCC{$N|44A<{T&Z{1HiOUlrH4sKKlfj@nxHM2~96K zELW2Tn0@z#s}Q|=FCj3D_YaSeu&cX7d5QlDfI`CljTX+%vWxtOU=Z>12IQ5ox6pqW zNE!hBKQ_>=!-Zc^yjb=htfBt32n5|f?}YyM?mIE&{`Jey7iIp>@-S&B75~pTf6*7r zUzq(OSdx6@&EJ22SHj-C-9?7H|HB<&XgE^f3-4aG1w<)MEx&~qOkQXeC;aL!+x!g# zNo6$Sgu8-aUsIm8Rv`UvZsEUnfQtnme8Oj;<|2vN_!w)f{ErjK=eK!r%~ zrUrKIY~Hp0h5!4n5AiX^HIWEN5Mh$M;m+hQ^n_q`)KfqS!h<0G-4%1625|c_cQ^cc z-o`a1Er||s%n3K@Mke$tTHsUn1o}DL%K|7ByOM-WISxPYtfJX}4uDFQq;V+h_I~wZ zJ0w+>faKF4<1`wOOd%6A7!MIToL%T2fFyH$mEZtphJ$Y>LztGU_999u=MUFYsYcchan&w7ywZbg7lvay-H$Ca3+^v>t4IJ zD${!k7|5w{8LFXZd*4f8^}6RC52FLmVH6?&Vm1iH{9z9sS&Mh)NkNku*ZO2J9T)m1 z->Bx3&dX2+2nO;eIKBYx*hl#w+CxYH*?j?&0Z+hXwOnkut$AjUQ$l~nZif{hWv^pG z3qq|RyXa9a}{bk61pYs{Zj

F-M#4C5SELuJ)>8lNLQh#d-7>_uyzzL=mZ{ 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�S9gB=dd6WTqf|T3~3Cll}*` z!QQEmcg|mjAz8v-17_5h82^yYIk^&>&kl*20+Lks$@bM3zxh1Q#|J7;tg@ma&I^9^ zo-w=$#6L%`#)2iHh5A}21u?h;Qo&UO9nq1?*#3M1m^EU?g@p*ZWWerDI9XdHJ3=6vEfqbz-4&RRIloS HYs~)ug4rHJ literal 0 HcmV?d00001 diff --git a/lib/app/app.bottomsheets.dart b/lib/app/app.bottomsheets.dart new file mode 100644 index 0000000..23d1d0d --- /dev/null +++ b/lib/app/app.bottomsheets.dart @@ -0,0 +1,30 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ************************************************************************** +// StackedBottomsheetGenerator +// ************************************************************************** + +import 'package:stacked_services/stacked_services.dart'; + +import 'app.locator.dart'; +import '../ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view.dart'; +import '../ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view.dart'; + +enum BottomSheetType { + detailSuaraBottomSheetView, + detailSuaraPemilihBottomSheetView, +} + +void setupBottomSheetUi() { + final bottomsheetService = locator(); + + final Map builders = { + BottomSheetType.detailSuaraBottomSheetView: (context, request, completer) => + DetailSuaraBottomSheetView(request: request, completer: completer), + BottomSheetType.detailSuaraPemilihBottomSheetView: + (context, request, completer) => DetailSuaraPemilihBottomSheetView( + request: request, completer: completer), + }; + + bottomsheetService.setCustomSheetBuilders(builders); +} diff --git a/lib/app/app.dart b/lib/app/app.dart new file mode 100644 index 0000000..4fe18a8 --- /dev/null +++ b/lib/app/app.dart @@ -0,0 +1,59 @@ +import 'package:stacked_services/stacked_services.dart'; +import 'package:stacked/stacked_annotations.dart'; + +import '../services/global_var.dart'; +import '../services/http_services.dart'; +import '../services/my_easyloading.dart'; +import '../services/other_function.dart'; + +import '../services/shared_prefs.dart'; +import '../ui/views/caleg_index_tracking/area_tps/area_tps_view.dart'; +import '../ui/views/caleg_index_tracking/caleg_index_tracking_view.dart'; +import '../ui/views/caleg_index_tracking/log_suara/log_suara_view.dart'; +import '../ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view.dart'; +import '../ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view.dart'; +import '../ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view.dart'; +import '../ui/views/caleg_index_tracking/tim_survei/tim_survei_view.dart'; +import '../ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view.dart'; +import '../ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view.dart'; +import '../ui/views/login_screen/login_screen_view.dart'; +import '../ui/views/splash_screen/splash_screen_view.dart'; + +@StackedApp( + routes: [ + MaterialRoute(page: SplashScreenView, initial: true), + MaterialRoute(page: LoginScreenView), + MaterialRoute( + page: CalegIndexTrackingView, + children: [ + MaterialRoute(page: PengaturanCalegView, initial: true), + MaterialRoute(page: PengaturanCaleg2View), + MaterialRoute(page: LogSuaraView), + MaterialRoute(page: TimSurveiView), + MaterialRoute(page: AreaTpsView) + ], + ), + ], + dialogs: [ + StackedDialog(classType: GantiPasswordDialogView), + // StackedDialog(classType: TambahDetailTimSurveiView) + ], + dependencies: [ + LazySingleton(classType: NavigationService), + LazySingleton(classType: DialogService), + LazySingleton(classType: SnackbarService), + LazySingleton(classType: BottomSheetService), + // this below is mine + LazySingleton(classType: MyEasyLoading), + LazySingleton(classType: MyHttpServices), + LazySingleton(classType: GlobalVar), + LazySingleton(classType: MyFunction), + LazySingleton(classType: MySharedPrefs) + ], + logger: StackedLogger(), + bottomsheets: [ + StackedBottomsheet(classType: DetailSuaraBottomSheetView), + StackedBottomsheet(classType: DetailSuaraPemilihBottomSheetView) + ], +) +class App {} diff --git a/lib/app/app.dialogs.dart b/lib/app/app.dialogs.dart new file mode 100644 index 0000000..1b5bcae --- /dev/null +++ b/lib/app/app.dialogs.dart @@ -0,0 +1,25 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ************************************************************************** +// StackedDialogGenerator +// ************************************************************************** + +import 'package:stacked_services/stacked_services.dart'; + +import 'app.locator.dart'; +import '../ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view.dart'; + +enum DialogType { + gantiPasswordDialogView, +} + +void setupDialogUi() { + final dialogService = locator(); + + final Map builders = { + DialogType.gantiPasswordDialogView: (context, request, completer) => + GantiPasswordDialogView(request: request, completer: completer), + }; + + dialogService.registerCustomDialogBuilders(builders); +} diff --git a/lib/app/app.locator.dart b/lib/app/app.locator.dart new file mode 100644 index 0000000..8cd39e0 --- /dev/null +++ b/lib/app/app.locator.dart @@ -0,0 +1,41 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ************************************************************************** +// StackedLocatorGenerator +// ************************************************************************** + +// ignore_for_file: public_member_api_docs, implementation_imports, depend_on_referenced_packages + +import 'package:stacked_services/src/bottom_sheet/bottom_sheet_service.dart'; +import 'package:stacked_services/src/dialog/dialog_service.dart'; +import 'package:stacked_services/src/navigation/navigation_service.dart'; +import 'package:stacked_services/src/snackbar/snackbar_service.dart'; +import 'package:stacked_shared/stacked_shared.dart'; + +import '../services/global_var.dart'; +import '../services/http_services.dart'; +import '../services/my_easyloading.dart'; +import '../services/other_function.dart'; +import '../services/shared_prefs.dart'; + +final locator = StackedLocator.instance; + +Future setupLocator({ + String? environment, + EnvironmentFilter? environmentFilter, +}) async { +// Register environments + locator.registerEnvironment( + environment: environment, environmentFilter: environmentFilter); + +// Register dependencies + locator.registerLazySingleton(() => NavigationService()); + locator.registerLazySingleton(() => DialogService()); + locator.registerLazySingleton(() => SnackbarService()); + locator.registerLazySingleton(() => BottomSheetService()); + locator.registerLazySingleton(() => MyEasyLoading()); + locator.registerLazySingleton(() => MyHttpServices()); + locator.registerLazySingleton(() => GlobalVar()); + locator.registerLazySingleton(() => MyFunction()); + locator.registerLazySingleton(() => MySharedPrefs()); +} diff --git a/lib/app/app.logger.dart b/lib/app/app.logger.dart new file mode 100644 index 0000000..26ab3f9 --- /dev/null +++ b/lib/app/app.logger.dart @@ -0,0 +1,159 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ************************************************************************** +// StackedLoggerGenerator +// ************************************************************************** + +// ignore_for_file: avoid_print, depend_on_referenced_packages + +/// Maybe this should be generated for the user as well? +/// +/// import 'package:customer_app/services/stackdriver/stackdriver_service.dart'; +import 'package:flutter/foundation.dart'; +import 'package:logger/logger.dart'; + +class SimpleLogPrinter extends LogPrinter { + final String className; + final bool printCallingFunctionName; + final bool printCallStack; + final List exludeLogsFromClasses; + final String? showOnlyClass; + + SimpleLogPrinter( + this.className, { + this.printCallingFunctionName = true, + this.printCallStack = false, + this.exludeLogsFromClasses = const [], + this.showOnlyClass, + }); + + @override + List log(LogEvent event) { + var color = PrettyPrinter.levelColors[event.level]; + var emoji = PrettyPrinter.levelEmojis[event.level]; + var methodName = _getMethodName(); + + var methodNameSection = + printCallingFunctionName && methodName != null ? ' | $methodName' : ''; + var stackLog = event.stackTrace.toString(); + var output = + '$emoji $className$methodNameSection - ${event.message}${event.error != null ? '\nERROR: ${event.error}\n' : ''}${printCallStack ? '\nSTACKTRACE:\n$stackLog' : ''}'; + + if (exludeLogsFromClasses + .any((excludeClass) => className == excludeClass) || + (showOnlyClass != null && className != showOnlyClass)) return []; + + final pattern = RegExp('.{1,800}'); // 800 is the size of each chunk + List result = []; + + for (var line in output.split('\n')) { + result.addAll(pattern.allMatches(line).map((match) { + if (kReleaseMode) { + return match.group(0)!; + } else { + return color!(match.group(0)!); + } + })); + } + + return result; + } + + String? _getMethodName() { + try { + final currentStack = StackTrace.current; + final formattedStacktrace = _formatStackTrace(currentStack, 3); + if (kIsWeb) { + final classNameParts = _splitClassNameWords(className); + return _findMostMatchedTrace(formattedStacktrace!, classNameParts) + .split(' ') + .last; + } else { + final realFirstLine = formattedStacktrace + ?.firstWhere((line) => line.contains(className), orElse: () => ""); + + final methodName = realFirstLine?.replaceAll('$className.', ''); + return methodName; + } + } catch (e) { + // There's no deliberate function call from our code so we return null; + return null; + } + } + + List _splitClassNameWords(String className) { + return className + .split(RegExp(r'(?=[A-Z])')) + .map((e) => e.toLowerCase()) + .toList(); + } + + /// When the faulty word exists in the begging this method will not be very usefull + String _findMostMatchedTrace( + List stackTraces, List keyWords) { + String match = stackTraces.firstWhere( + (trace) => _doesTraceContainsAllKeywords(trace, keyWords), + orElse: () => ''); + if (match.isEmpty) { + match = _findMostMatchedTrace( + stackTraces, keyWords.sublist(0, keyWords.length - 1)); + } + return match; + } + + bool _doesTraceContainsAllKeywords(String stackTrace, List keywords) { + final formattedKeywordsAsRegex = RegExp(keywords.join('.*')); + return stackTrace.contains(formattedKeywordsAsRegex); + } +} + +final stackTraceRegex = RegExp(r'#[0-9]+[\s]+(.+) \(([^\s]+)\)'); + +List? _formatStackTrace(StackTrace stackTrace, int methodCount) { + var lines = stackTrace.toString().split('\n'); + + var formatted = []; + var count = 0; + for (var line in lines) { + var match = stackTraceRegex.matchAsPrefix(line); + if (match != null) { + if (match.group(2)!.startsWith('package:logger')) { + continue; + } + var newLine = ("${match.group(1)}"); + formatted.add(newLine.replaceAll('', '()')); + if (++count == methodCount) { + break; + } + } else { + formatted.add(line); + } + } + + if (formatted.isEmpty) { + return null; + } else { + return formatted; + } +} + +Logger getLogger( + String className, { + bool printCallingFunctionName = true, + bool printCallstack = false, + List exludeLogsFromClasses = const [], + String? showOnlyClass, +}) { + return Logger( + printer: SimpleLogPrinter( + className, + printCallingFunctionName: printCallingFunctionName, + printCallStack: printCallstack, + showOnlyClass: showOnlyClass, + exludeLogsFromClasses: exludeLogsFromClasses, + ), + output: MultiOutput([ + if (!kReleaseMode) ConsoleOutput(), + ]), + ); +} diff --git a/lib/app/app.router.dart b/lib/app/app.router.dart new file mode 100644 index 0000000..e567ce7 --- /dev/null +++ b/lib/app/app.router.dart @@ -0,0 +1,402 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ************************************************************************** +// StackedNavigatorGenerator +// ************************************************************************** + +// ignore_for_file: no_leading_underscores_for_library_prefixes +import 'package:cek_suara_caleg/ui/views/caleg_index_tracking/area_tps/area_tps_view.dart' + as _i10; +import 'package:cek_suara_caleg/ui/views/caleg_index_tracking/caleg_index_tracking_view.dart' + as _i4; +import 'package:cek_suara_caleg/ui/views/caleg_index_tracking/log_suara/log_suara_view.dart' + as _i8; +import 'package:cek_suara_caleg/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view.dart' + as _i7; +import 'package:cek_suara_caleg/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view.dart' + as _i6; +import 'package:cek_suara_caleg/ui/views/caleg_index_tracking/tim_survei/tim_survei_view.dart' + as _i9; +import 'package:cek_suara_caleg/ui/views/login_screen/login_screen_view.dart' + as _i3; +import 'package:cek_suara_caleg/ui/views/splash_screen/splash_screen_view.dart' + as _i2; +import 'package:flutter/material.dart' as _i5; +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart' as _i1; +import 'package:stacked_services/stacked_services.dart' as _i11; + +class Routes { + static const splashScreenView = '/'; + + static const loginScreenView = '/login-screen-view'; + + static const calegIndexTrackingView = '/caleg-index-tracking-view'; + + static const all = { + splashScreenView, + loginScreenView, + calegIndexTrackingView, + }; +} + +class StackedRouter extends _i1.RouterBase { + final _routes = <_i1.RouteDef>[ + _i1.RouteDef( + Routes.splashScreenView, + page: _i2.SplashScreenView, + ), + _i1.RouteDef( + Routes.loginScreenView, + page: _i3.LoginScreenView, + ), + _i1.RouteDef( + Routes.calegIndexTrackingView, + page: _i4.CalegIndexTrackingView, + ), + ]; + + final _pagesMap = { + _i2.SplashScreenView: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i2.SplashScreenView(), + settings: data, + ); + }, + _i3.LoginScreenView: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i3.LoginScreenView(), + settings: data, + ); + }, + _i4.CalegIndexTrackingView: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i4.CalegIndexTrackingView(), + settings: data, + ); + }, + }; + + @override + List<_i1.RouteDef> get routes => _routes; + + @override + Map get pagesMap => _pagesMap; +} + +class CalegIndexTrackingViewRoutes { + static const pengaturanCalegView = ''; + + static const pengaturanCaleg2View = 'pengaturan-caleg2-view'; + + static const logSuaraView = 'log-suara-view'; + + static const timSurveiView = 'tim-survei-view'; + + static const areaTpsView = 'area-tps-view'; + + static const all = { + pengaturanCalegView, + pengaturanCaleg2View, + logSuaraView, + timSurveiView, + areaTpsView, + }; +} + +class CalegIndexTrackingViewRouter extends _i1.RouterBase { + final _routes = <_i1.RouteDef>[ + _i1.RouteDef( + CalegIndexTrackingViewRoutes.pengaturanCalegView, + page: _i6.PengaturanCalegView, + ), + _i1.RouteDef( + CalegIndexTrackingViewRoutes.pengaturanCaleg2View, + page: _i7.PengaturanCaleg2View, + ), + _i1.RouteDef( + CalegIndexTrackingViewRoutes.logSuaraView, + page: _i8.LogSuaraView, + ), + _i1.RouteDef( + CalegIndexTrackingViewRoutes.timSurveiView, + page: _i9.TimSurveiView, + ), + _i1.RouteDef( + CalegIndexTrackingViewRoutes.areaTpsView, + page: _i10.AreaTpsView, + ), + ]; + + final _pagesMap = { + _i6.PengaturanCalegView: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i6.PengaturanCalegView(), + settings: data, + ); + }, + _i7.PengaturanCaleg2View: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i7.PengaturanCaleg2View(), + settings: data, + ); + }, + _i8.LogSuaraView: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i8.LogSuaraView(), + settings: data, + ); + }, + _i9.TimSurveiView: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i9.TimSurveiView(), + settings: data, + ); + }, + _i10.AreaTpsView: (data) { + return _i5.MaterialPageRoute( + builder: (context) => const _i10.AreaTpsView(), + settings: data, + ); + }, + }; + + @override + List<_i1.RouteDef> get routes => _routes; + + @override + Map get pagesMap => _pagesMap; +} + +extension NavigatorStateExtension on _i11.NavigationService { + Future navigateToSplashScreenView([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo(Routes.splashScreenView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future navigateToLoginScreenView([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo(Routes.loginScreenView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future navigateToCalegIndexTrackingView([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo(Routes.calegIndexTrackingView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future + navigateToNestedPengaturanCalegViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo(CalegIndexTrackingViewRoutes.pengaturanCalegView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future + navigateToNestedPengaturanCaleg2ViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo( + CalegIndexTrackingViewRoutes.pengaturanCaleg2View, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future navigateToNestedLogSuaraViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo(CalegIndexTrackingViewRoutes.logSuaraView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future navigateToNestedTimSurveiViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo(CalegIndexTrackingViewRoutes.timSurveiView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future navigateToNestedAreaTpsViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return navigateTo(CalegIndexTrackingViewRoutes.areaTpsView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future replaceWithSplashScreenView([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith(Routes.splashScreenView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future replaceWithLoginScreenView([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith(Routes.loginScreenView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future replaceWithCalegIndexTrackingView([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith(Routes.calegIndexTrackingView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future + replaceWithNestedPengaturanCalegViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith( + CalegIndexTrackingViewRoutes.pengaturanCalegView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future + replaceWithNestedPengaturanCaleg2ViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith( + CalegIndexTrackingViewRoutes.pengaturanCaleg2View, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future replaceWithNestedLogSuaraViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith(CalegIndexTrackingViewRoutes.logSuaraView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future replaceWithNestedTimSurveiViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith(CalegIndexTrackingViewRoutes.timSurveiView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } + + Future replaceWithNestedAreaTpsViewInCalegIndexTrackingViewRouter([ + int? routerId, + bool preventDuplicates = true, + Map? parameters, + Widget Function(BuildContext, Animation, Animation, Widget)? + transition, + ]) async { + return replaceWith(CalegIndexTrackingViewRoutes.areaTpsView, + id: routerId, + preventDuplicates: preventDuplicates, + parameters: parameters, + transition: transition); + } +} diff --git a/lib/app/core/custom_base_view_model.dart b/lib/app/core/custom_base_view_model.dart new file mode 100755 index 0000000..b49225a --- /dev/null +++ b/lib/app/core/custom_base_view_model.dart @@ -0,0 +1,62 @@ +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:stacked/stacked.dart'; +import 'package:stacked_services/stacked_services.dart'; + +import '../../services/global_var.dart'; +import '../../services/http_services.dart'; +import '../../services/my_easyloading.dart'; +import '../../services/other_function.dart'; +import '../../services/shared_prefs.dart'; +import '../app.locator.dart'; +import '../themes/app_colors.dart'; + +class CustomBaseViewModel extends BaseViewModel { + final dialogService = locator(); + final navigationService = locator(); + final bottomSheetService = locator(); + final snackbarService = locator(); + // below is mine + final easyLoading = locator(); + final httpService = locator(); + final globalVar = locator(); + final myFunction = locator(); + final mySharedPrefs = locator(); + + void back() { + navigationService.back(); + } + + quitApp(BuildContext context) { + // globalVar.backPressed = 'cantBack'; + showDialog( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: const Text('Keluar'), + content: const Text('Apakah Anda yakin ingin keluar?'), + actions: [ + TextButton( + onPressed: () { + globalVar.backPressed = 'exitApp'; + Navigator.of(context).pop(false); + }, + child: const Text('Batal'), + ), + TextButton( + onPressed: () => Navigator.of(context).pop(true), + child: const Text( + 'Keluar', + style: TextStyle(color: dangerColor), + ), + ), + ], + ); + }, + ).then((value) { + if (value == true) { + SystemNavigator.pop(); + } + }); + } +} diff --git a/lib/app/themes/app_colors.dart b/lib/app/themes/app_colors.dart new file mode 100755 index 0000000..cb6f0ab --- /dev/null +++ b/lib/app/themes/app_colors.dart @@ -0,0 +1,30 @@ +import 'dart:ui'; + +const Color mainColor = Color(0xFF25C0F1); +const Color secondaryColor = Color(0xFFB72025); +const Color dangerColor = Color(0xFFFF4B68); +const Color warningColor = Color(0xFFFBFFA3); +const Color lightColor = Color(0xFFF4FAFE); +const Color lightGreyColor = Color(0xFFFCFCFC); +const Color stockColor = Color(0xFFEEF3F6); + +const Color backgroundColor = Color(0xFFE5E5E5); +const Color backgroundColor3 = Color(0xFFF6F7F8); + +const Color orangeColor = Color.fromARGB(255, 250, 145, 84); +const Color blueColor = Color(0xFF026AA2); +const Color greenColor = Color(0xFF2ABB52); +const Color redColor = Color(0xFFED1717); +const Color greyBlueColor = Color(0xFF363F72); + +const Color fontColor = Color(0xFF101828); +const Color fontSecondaryColor = Color(0xFF667085); +const Color fontParagraphColor = Color(0xFFB2B2B2); +const Color fontGrey = Color(0xFF1C1C1C); + +const Color mainGrey = Color(0xFF8991A4); +const Color secondaryGrey = Color(0xFFD0D5DD); +const Color thirdGrey = Color(0xFFF2F4F7); +const Color fourthGrey = Color(0xFF5C5C5C); +const Color fifthGrey = Color(0xFFEBEBEB); +const Color sixthGrey = Color(0xFF151515); diff --git a/lib/app/themes/app_text.dart b/lib/app/themes/app_text.dart new file mode 100644 index 0000000..092d154 --- /dev/null +++ b/lib/app/themes/app_text.dart @@ -0,0 +1,44 @@ +import 'package:flutter/material.dart'; + +import 'app_colors.dart'; + +const regularTextStyle = TextStyle( + fontFamily: 'Arial', + fontSize: 14, + fontWeight: FontWeight.w400, + color: fontColor); + +const italicTextStyle = TextStyle( + fontFamily: 'Arial', + fontSize: 14, + color: fontColor, + fontStyle: FontStyle.italic, +); + +const mediumTextStyle = TextStyle( + fontFamily: 'Arial', + fontSize: 14, + fontWeight: FontWeight.w500, + color: fontColor, +); + +const semiBoldTextStyle = TextStyle( + fontFamily: 'Arial', + fontSize: 14, + fontWeight: FontWeight.w600, + color: fontColor, +); + +const boldTextStyle = TextStyle( + fontFamily: 'Arial', + fontSize: 14, + fontWeight: FontWeight.w700, + color: fontColor, +); + +const extraBoldTextStyle = TextStyle( + fontFamily: 'Arial', + fontSize: 14, + fontWeight: FontWeight.w800, + color: fontColor, +); diff --git a/lib/app/themes/app_theme.dart b/lib/app/themes/app_theme.dart new file mode 100755 index 0000000..f52d219 --- /dev/null +++ b/lib/app/themes/app_theme.dart @@ -0,0 +1,126 @@ +// ignore_for_file: deprecated_member_use + +import 'package:flutter/material.dart'; + +import 'app_colors.dart'; +import 'app_text.dart'; + +ThemeData appTheme = ThemeData( + useMaterial3: true, + primaryColor: mainColor, + scaffoldBackgroundColor: Colors.white, + canvasColor: Colors.white, + fontFamily: 'Poppins', + appBarTheme: AppBarTheme( + elevation: 0, + titleTextStyle: boldTextStyle.copyWith(fontSize: 16, color: fontGrey), + centerTitle: true, + ), + textTheme: TextTheme( + headline1: regularTextStyle.copyWith(fontSize: 32), + headline2: regularTextStyle.copyWith(fontSize: 20), + headline3: regularTextStyle.copyWith(fontSize: 18), + ), + elevatedButtonTheme: ElevatedButtonThemeData( + style: ElevatedButton.styleFrom( + backgroundColor: mainColor, + foregroundColor: Colors.white, + disabledBackgroundColor: mainColor.withOpacity(.3), + minimumSize: const Size(double.maxFinite, 58), + textStyle: boldTextStyle, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + shadowColor: Colors.transparent, + elevation: 0, + ), + ), + outlinedButtonTheme: OutlinedButtonThemeData( + style: OutlinedButton.styleFrom( + textStyle: boldTextStyle, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + side: const BorderSide( + color: mainColor, + width: 1, + ), + foregroundColor: mainColor, + // disabledForegroundColor: mainColor.withOpacity(.3), + minimumSize: const Size(double.maxFinite, 58), + ), + ), + textButtonTheme: TextButtonThemeData( + style: TextButton.styleFrom( + foregroundColor: mainColor, + disabledForegroundColor: mainColor.withOpacity(.3), + elevation: 0, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + textStyle: semiBoldTextStyle, + shadowColor: Colors.transparent, + ), + ), + iconTheme: const IconThemeData( + color: mainColor, + ), + listTileTheme: ListTileThemeData( + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + ), + checkboxTheme: CheckboxThemeData( + fillColor: MaterialStateProperty.all(mainColor), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(4), + ), + side: const BorderSide( + color: secondaryGrey, + width: 1, + ), + ), + radioTheme: RadioThemeData( + fillColor: MaterialStateProperty.all(mainColor), + ), + tabBarTheme: TabBarTheme( + labelColor: mainColor, + unselectedLabelColor: secondaryGrey, + labelStyle: boldTextStyle.copyWith(fontSize: 16), + unselectedLabelStyle: mediumTextStyle.copyWith(fontSize: 16), + ), + chipTheme: ChipThemeData( + backgroundColor: Colors.white, + disabledColor: Colors.white, + selectedColor: Colors.white, + secondarySelectedColor: Colors.white, + padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16), + side: const BorderSide(color: fifthGrey), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(6), + ), + labelStyle: regularTextStyle.copyWith(fontSize: 12, color: fontGrey), + secondaryLabelStyle: + regularTextStyle.copyWith(fontSize: 12, color: secondaryColor), + deleteIconColor: fontGrey, + showCheckmark: false, + ), + popupMenuTheme: PopupMenuThemeData( + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + side: const BorderSide( + color: fifthGrey, + width: 1, + ), + ), + ), + colorScheme: const ColorScheme.light( + primary: mainColor, + secondary: secondaryColor, + onPrimary: Colors.white, + onSecondary: Colors.white, + error: dangerColor, + onError: dangerColor, + background: backgroundColor, + ).copyWith(background: Colors.white), +); diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..9dd80c7 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,52 @@ +import 'dart:io'; + +import 'package:flutter/material.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; +import 'package:flutter_easyloading/flutter_easyloading.dart'; +import 'package:stacked_services/stacked_services.dart'; + +import 'app/app.bottomsheets.dart'; +import 'app/app.dialogs.dart'; +import 'app/app.locator.dart'; +import 'app/app.router.dart'; +import 'app/themes/app_theme.dart'; + +Future main() async { + HttpOverrides.global = MyHttpOverrides(); + await dotenv.load(fileName: ".env"); + await setupAllLocator(); + runApp(const MyApp()); +} + +class MyApp extends StatelessWidget { + const MyApp({super.key}); + + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Cek Suara Caleg', + theme: appTheme, + debugShowCheckedModeBanner: false, + navigatorKey: StackedService.navigatorKey, + onGenerateRoute: StackedRouter().onGenerateRoute, + builder: EasyLoading.init(), + ); + } +} + +Future setupAllLocator() async { + await setupLocator(); + setupDialogUi(); + setupBottomSheetUi(); + // setupSnackbarUi(); +} + +class MyHttpOverrides extends HttpOverrides { + @override + HttpClient createHttpClient(SecurityContext? context) { + return super.createHttpClient(context) + ..badCertificateCallback = + (X509Certificate cert, String host, int port) => true; + } +} diff --git a/lib/model/area_model.dart b/lib/model/area_model.dart new file mode 100644 index 0000000..94c5f76 --- /dev/null +++ b/lib/model/area_model.dart @@ -0,0 +1,44 @@ +class AreaListModel { + List? area; + int? jumlah; + + AreaListModel({this.area, this.jumlah}); + + AreaListModel.fromJson(Map json) { + if (json['area'] != null) { + area = []; + json['area'].forEach((v) { + area!.add(AreaModel.fromJson(v)); + }); + } + jumlah = json['jumlah']; + } + + Map toJson() { + final Map data = {}; + if (area != null) { + data['area'] = area!.map((v) => v.toJson()).toList(); + } + data['jumlah'] = jumlah; + return data; + } +} + +class AreaModel { + int? idArea; + String? namaArea; + + AreaModel({this.idArea, this.namaArea}); + + AreaModel.fromJson(Map json) { + idArea = json['id_area']; + namaArea = json['nama_area']; + } + + Map toJson() { + final Map data = {}; + data['id_area'] = idArea; + data['nama_area'] = namaArea; + return data; + } +} diff --git a/lib/model/caleg_model.dart b/lib/model/caleg_model.dart new file mode 100644 index 0000000..17d53dc --- /dev/null +++ b/lib/model/caleg_model.dart @@ -0,0 +1,50 @@ +class CalegListModel { + List? caleg; + int? jumlah; + + CalegListModel({this.caleg, this.jumlah}); + + CalegListModel.fromJson(Map json) { + if (json['caleg'] != null) { + caleg = []; + json['caleg'].forEach((v) { + caleg!.add(CalegModel.fromJson(v)); + }); + } + jumlah = json['jumlah']; + } + + Map toJson() { + final Map data = {}; + if (caleg != null) { + data['caleg'] = caleg!.map((v) => v.toJson()).toList(); + } + data['jumlah'] = jumlah; + return data; + } +} + +class CalegModel { + int? idCaleg; + String? namaCaleg; + int? nomorUrutCaleg; + String? foto; + + CalegModel({this.idCaleg, this.namaCaleg, this.nomorUrutCaleg, this.foto}); + + CalegModel.fromJson(Map json) { + idCaleg = json['id_caleg']; + namaCaleg = json['nama_caleg']; + nomorUrutCaleg = json['nomor_urut_caleg']; + foto = json['foto']; + } + + Map toJson() { + final Map data = {}; + data['id_caleg'] = idCaleg; + data['nama_caleg'] = namaCaleg; + data['nomor_urut_caleg'] = nomorUrutCaleg; + data['foto'] = foto; + return data; + } +} diff --git a/lib/model/my_response.model.dart b/lib/model/my_response.model.dart new file mode 100644 index 0000000..5d4f78f --- /dev/null +++ b/lib/model/my_response.model.dart @@ -0,0 +1,21 @@ +class MyResponseModel { + String? message; + dynamic data; + bool? status; + + MyResponseModel({this.message, this.data, this.status}); + + MyResponseModel.fromJson(Map json) { + message = json['message']; + data = json['data']; + status = json['status']; + } + + Map toJson() { + final Map data = {}; + data['message'] = message; + data['data'] = this.data; + data['status'] = status; + return data; + } +} diff --git a/lib/model/pemilih_model.dart b/lib/model/pemilih_model.dart new file mode 100644 index 0000000..25644a5 --- /dev/null +++ b/lib/model/pemilih_model.dart @@ -0,0 +1,75 @@ +import '../app/app.locator.dart'; +import '../services/other_function.dart'; + +class PemilihDetailModel { + List? pemilihModel; + int? jumlah; + + PemilihDetailModel({this.pemilihModel, this.jumlah}); + + PemilihDetailModel.fromJson(Map json) { + if (json['data'] != null) { + pemilihModel = []; + json['data'].forEach((v) { + pemilihModel!.add(PemilihModel.fromJson(v)); + }); + } + jumlah = json['jumlah']; + } + + Map toJson() { + final Map data = {}; + if (pemilihModel != null) { + data['data'] = pemilihModel!.map((v) => v.toJson()).toList(); + } + data['jumlah'] = jumlah; + return data; + } +} + +class PemilihModel { + final myFunction = locator(); + + String? nikNomorHp; + String? namaPemilih; + String? img; + String? nikTimSurvei; + String? namaTimSurvei; + String? namaCaleg; + String? namaArea; + String? createdAt; + + PemilihModel( + {this.nikNomorHp, + this.namaPemilih, + this.img, + this.nikTimSurvei, + this.namaTimSurvei, + this.namaCaleg, + this.namaArea, + this.createdAt}); + + PemilihModel.fromJson(Map json) { + nikNomorHp = json['nik_nomor_hp']; + namaPemilih = json['nama_pemilih']; + img = json['img']; + nikTimSurvei = json['nik_tim_survei']; + namaTimSurvei = json['nama_tim_survei']; + namaCaleg = json['nama_caleg']; + namaArea = json['nama_area']; + createdAt = myFunction.convertDateTime(json['created_at']); + } + + Map toJson() { + final Map data = {}; + data['nik_nomor_hp'] = nikNomorHp; + data['nama_pemilih'] = namaPemilih; + data['img'] = img; + data['nik_tim_survei'] = nikTimSurvei; + data['nama_tim_survei'] = namaTimSurvei; + data['nama_caleg'] = namaCaleg; + data['nama_area'] = namaArea; + data['created_at'] = createdAt; + return data; + } +} diff --git a/lib/model/tim_survei_model.dart b/lib/model/tim_survei_model.dart new file mode 100644 index 0000000..94d5077 --- /dev/null +++ b/lib/model/tim_survei_model.dart @@ -0,0 +1,57 @@ +import '../app/app.locator.dart'; +import '../services/other_function.dart'; + +class TimSurveiListModel { + List? survei; + int? jumlah; + + TimSurveiListModel({this.survei, this.jumlah}); + + TimSurveiListModel.fromJson(Map json) { + if (json['survei'] != null) { + survei = []; + json['survei'].forEach((v) { + survei!.add(TimSurveiModel.fromJson(v)); + }); + } + jumlah = json['jumlah']; + } + + Map toJson() { + final Map data = {}; + if (survei != null) { + data['survei'] = survei!.map((v) => v.toJson()).toList(); + } + data['jumlah'] = jumlah; + return data; + } +} + +class TimSurveiModel { + final myFunction = locator(); + String? nik; + String? nama; + int? idCaleg; + String? namaCaleg; + String? createdAt; + + TimSurveiModel({this.nik, this.nama, this.createdAt}); + + TimSurveiModel.fromJson(Map json) { + nik = json['nik']; + nama = json['nama']; + idCaleg = json['id_caleg']; + namaCaleg = json['nama_caleg']; + createdAt = myFunction.convertDateTime(json['created_at']); + } + + Map toJson() { + final Map data = {}; + data['nik'] = nik; + data['nama'] = nama; + data['id_caleg'] = idCaleg; + data['nama_caleg'] = namaCaleg; + data['created_at'] = createdAt; + return data; + } +} diff --git a/lib/services/global_var.dart b/lib/services/global_var.dart new file mode 100644 index 0000000..483a46f --- /dev/null +++ b/lib/services/global_var.dart @@ -0,0 +1,3 @@ +class GlobalVar { + String backPressed = 'backNormal'; +} diff --git a/lib/services/http_services.dart b/lib/services/http_services.dart new file mode 100644 index 0000000..bb0d816 --- /dev/null +++ b/lib/services/http_services.dart @@ -0,0 +1,73 @@ +import 'package:dio/dio.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; +import 'package:stacked_services/stacked_services.dart'; + +import '../app/app.locator.dart'; +import '../app/app.logger.dart'; + +class MyHttpServices { + final _log = getLogger('MyHttpServices'); + final _snackbarService = locator(); + final _options = BaseOptions( + baseUrl: dotenv.env['api_url']!, + connectTimeout: const Duration(milliseconds: 60000), + receiveTimeout: const Duration(milliseconds: 60000), + ); + + late Dio _dio; + + MyHttpServices() { + _dio = Dio(_options); + } + + Future get(String path) async { + try { + return await _dio.get(path); + } on DioException catch (e) { + String response = e.response != null + ? e.response!.data['message'].toString() + : e.toString(); + _log.e('ini errornya: $response'); + _snackbarService.showSnackbar( + message: response, + title: 'Error', + duration: const Duration(milliseconds: 1000), + ); + rethrow; + } + } + + Future postWithFormData(String path, FormData formData) async { + try { + return await _dio.post(path, data: formData); + } on DioException catch (e) { + String response = e.response != null + ? e.response!.data['message'].toString() + : e.toString(); + _log.e('ini errornya: $response'); + _snackbarService.showSnackbar( + message: response, + title: 'Error', + duration: const Duration(milliseconds: 1000), + ); + rethrow; + } + } + + Future delete(String path) async { + try { + return await _dio.delete(path); + } on DioException catch (e) { + String response = e.response != null + ? e.response!.data['message'].toString() + : e.toString(); + _log.e('ini errornya: $response'); + _snackbarService.showSnackbar( + message: response, + title: 'Error', + duration: const Duration(milliseconds: 1000), + ); + rethrow; + } + } +} diff --git a/lib/services/my_easyloading.dart b/lib/services/my_easyloading.dart new file mode 100644 index 0000000..46cb062 --- /dev/null +++ b/lib/services/my_easyloading.dart @@ -0,0 +1,39 @@ +import 'package:flutter_easyloading/flutter_easyloading.dart'; + +class MyEasyLoading { + showLoading() { + EasyLoading.show( + status: 'loading...', + maskType: EasyLoadingMaskType.black, + dismissOnTap: false, + ); + } + + dismissLoading() { + EasyLoading.dismiss(); + } + + customLoading(String message) { + EasyLoading.show( + status: message, + maskType: EasyLoadingMaskType.black, + dismissOnTap: false, + ); + } + + showSuccess(String message) { + EasyLoading.showSuccess(message); + } + + showError(String message) { + EasyLoading.showError(message); + } + + showInfo(String message) { + EasyLoading.showInfo(message); + } + + showProgress(double progress, String status) { + EasyLoading.showProgress(progress, status: status); + } +} diff --git a/lib/services/other_function.dart b/lib/services/other_function.dart new file mode 100644 index 0000000..eed5a09 --- /dev/null +++ b/lib/services/other_function.dart @@ -0,0 +1,16 @@ +import 'package:intl/intl.dart'; + +class MyFunction { + String convertDateTime(String input) { + DateTime dateTime = DateTime.parse(input); + String formattedDateTime = + DateFormat('dd-MM-yyyy | hh.mm.ss a').format(dateTime); + return formattedDateTime; + } + + // chnage | to \n in string + String convertDateTime2(String input) { + input = input.replaceAll('| ', '\n'); + return input; + } +} diff --git a/lib/services/shared_prefs.dart b/lib/services/shared_prefs.dart new file mode 100644 index 0000000..682ed75 --- /dev/null +++ b/lib/services/shared_prefs.dart @@ -0,0 +1,25 @@ +import 'package:shared_preferences/shared_preferences.dart'; + +class MySharedPrefs { + final Future prefs = SharedPreferences.getInstance(); + + Future getString(String key) async { + final SharedPreferences prefs = await this.prefs; + return prefs.getString(key); + } + + Future setString(String key, String value) async { + final SharedPreferences prefs = await this.prefs; + return prefs.setString(key, value); + } + + Future removeString(String key) async { + final SharedPreferences prefs = await this.prefs; + return prefs.remove(key); + } + + Future clear() async { + final SharedPreferences prefs = await this.prefs; + return prefs.clear(); + } +} diff --git a/lib/ui/views/caleg_index_tracking/area_tps/area_tps_view.dart b/lib/ui/views/caleg_index_tracking/area_tps/area_tps_view.dart new file mode 100644 index 0000000..20d4353 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/area_tps/area_tps_view.dart @@ -0,0 +1,144 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; + +import '../../../../app/themes/app_colors.dart'; +import '../../../../app/themes/app_text.dart'; +import './area_tps_view_model.dart'; + +class AreaTpsView extends StatelessWidget { + const AreaTpsView({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => AreaTpsViewModel(), + onViewModelReady: (AreaTpsViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + AreaTpsViewModel model, + Widget? child, + ) { + return Scaffold( + body: WillPopScope( + onWillPop: () async { + // model.log.i('backPressed: ${model.globalVar.backPressed}'); + if (model.globalVar.backPressed == 'exitApp') { + // model.back(); + model.quitApp(context); + } + return false; + }, + child: SafeArea( + child: Container( + height: MediaQuery.of(context).size.height, + padding: const EdgeInsets.all(20), + child: Column( + children: [ + Container( + padding: const EdgeInsets.all(15), + width: double.infinity, + decoration: BoxDecoration( + border: Border.all(color: Colors.grey), + borderRadius: BorderRadius.circular(10), + color: warningColor, + ), + child: Row( + children: [ + Text( + "Jumlah Area TPS : ", + style: italicTextStyle.copyWith( + fontSize: 16, + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(width: 10), + Expanded( + child: Text( + '${model.jumlahArea} TPS', + style: boldTextStyle.copyWith( + fontSize: 16, + fontWeight: FontWeight.bold, + ), + ), + ), + const Icon( + Icons.location_on_outlined, + color: fontColor, + ), + // SizedBox(width: 20), + ], + ), + ), + const SizedBox(height: 20), + Expanded( + flex: 3, + child: Container( + height: double.infinity, + width: double.infinity, + padding: const EdgeInsets.all(10), + decoration: BoxDecoration( + border: Border.all(color: Colors.grey), + borderRadius: BorderRadius.circular(10), + color: warningColor, + ), + child: Column( + // mainAxisSize: MainAxisSize.max, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + if (model.isBusy) + const Center(child: CircularProgressIndicator()), + if (!model.isBusy) + Expanded( + child: SingleChildScrollView( + child: Column( + children: [ + if (model.jumlahArea == 0) + Center( + child: model.status == true + ? const Text( + 'Belum ada area diinput') + : const Text( + 'Gagal mengambil data'), + ), + if (model.jumlahArea > 0) + for (var i = 0; + i < model.jumlahArea; + i++) + Card( + child: ListTile( + leading: Text('${i + 1}'), + title: Text( + '${model.listAreaModel[i].namaArea}'), + trailing: IconButton( + // trash bin icon + icon: const Icon( + Icons.list_alt_outlined, + color: mainColor, + ), + onPressed: () { + model.cekSuara( + model.listAreaModel[i]); + }, + ), + ), + ), + ], + ), + ), + ), + ], + ), + ), + ), + ], + ), + ), + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/area_tps/area_tps_view_model.dart b/lib/ui/views/caleg_index_tracking/area_tps/area_tps_view_model.dart new file mode 100644 index 0000000..cd7974d --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/area_tps/area_tps_view_model.dart @@ -0,0 +1,52 @@ +import '../../../../app/app.bottomsheets.dart'; +import '../../../../app/app.logger.dart'; +import '../../../../app/core/custom_base_view_model.dart'; +import '../../../../model/area_model.dart'; +import '../../../../model/my_response.model.dart'; + +class AreaTpsViewModel extends CustomBaseViewModel { + final log = getLogger('AreaTpsViewModel'); + + List listAreaModel = []; + int jumlahArea = 0; + bool status = false; + + Future init() async { + globalVar.backPressed = 'exitApp'; + String? idCaleg = await mySharedPrefs.getString('id'); + await getData(idCaleg!); + } + + getData(String idCaleg) async { + setBusy(true); + + try { + var response = await httpService.get('/area/cek_area_caleg/$idCaleg'); + MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data); + AreaListModel areaListModel = + AreaListModel.fromJson(myResponseModel.data); + listAreaModel = areaListModel.area ?? []; + log.i('listAreaModel: $listAreaModel'); + jumlahArea = listAreaModel.length; + log.i('jumlahArea: $jumlahArea'); + status = true; + } catch (e) { + log.e(e.toString()); + status = false; + } finally { + setBusy(false); + } + } + + cekSuara(AreaModel areaModel) async { + await bottomSheetService.showCustomSheet( + data: areaModel.idArea, + barrierDismissible: true, + isScrollControlled: true, + title: 'Detail Suara Area ${areaModel.namaArea}', + description: 'Tim Survei', + ignoreSafeArea: false, + variant: BottomSheetType.detailSuaraBottomSheetView, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/caleg_index_tracking_view.dart b/lib/ui/views/caleg_index_tracking/caleg_index_tracking_view.dart new file mode 100644 index 0000000..a466954 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/caleg_index_tracking_view.dart @@ -0,0 +1,93 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; +import 'package:stacked_services/stacked_services.dart'; +import 'package:stylish_bottom_bar/model/bar_items.dart'; +import 'package:stylish_bottom_bar/stylish_bottom_bar.dart'; + +import '../../../app/app.router.dart'; +import '../../../app/themes/app_colors.dart'; +import '../../../app/themes/app_text.dart'; +import './caleg_index_tracking_view_model.dart'; + +class CalegIndexTrackingView extends StatelessWidget { + const CalegIndexTrackingView({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => CalegIndexTrackingViewModel(), + onViewModelReady: (CalegIndexTrackingViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + CalegIndexTrackingViewModel model, + Widget? child, + ) { + return SafeArea( + child: Scaffold( + appBar: AppBar( + title: Text( + model.header, + style: const TextStyle( + color: fontColor, + fontSize: 20, + ), + ), + backgroundColor: warningColor, + elevation: 0, + automaticallyImplyLeading: false, + actions: [ + IconButton( + onPressed: () { + model.logout(); + }, + icon: const Icon(Icons.logout, color: fontColor), + ), + ], + ), + extendBody: false, + body: ExtendedNavigator( + router: CalegIndexTrackingViewRouter(), + navigatorKey: StackedService.nestedNavigationKey(3), + ), + bottomNavigationBar: StylishBottomBar( + items: [ + for (var item in model.bottomNavBarList) + BottomBarItem( + icon: Icon(item['icon'], + color: model.currentIndex == + model.bottomNavBarList.indexOf(item) + ? warningColor + : fontColor), + title: Text( + item['name'], + style: regularTextStyle.copyWith( + color: model.currentIndex == + model.bottomNavBarList.indexOf(item) + ? warningColor + : fontColor, + ), + // textAlign: TextAlign.l, + ), + backgroundColor: model.currentIndex == + model.bottomNavBarList.indexOf(item) + ? fontColor + : fontColor, + ), + ], + currentIndex: model.currentIndex, + option: BubbleBarOptions(), + hasNotch: true, + backgroundColor: warningColor, + onTap: (value) { + model.handleNavigation(value); + }, + // fabLocation: StylishBarFabLocation.center, + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/caleg_index_tracking_view_model.dart b/lib/ui/views/caleg_index_tracking/caleg_index_tracking_view_model.dart new file mode 100644 index 0000000..1bc9d3c --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/caleg_index_tracking_view_model.dart @@ -0,0 +1,97 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; +import 'package:stacked_services/stacked_services.dart'; + +import '../../../app/app.locator.dart'; +import '../../../app/app.logger.dart'; +import '../../../app/app.router.dart'; +import '../../../services/global_var.dart'; +import '../../../services/shared_prefs.dart'; + +class CalegIndexTrackingViewModel extends IndexTrackingViewModel { + final log = getLogger('CalegIndexTrackingViewModel'); + final mySharedPrefs = locator(); + final navigationService = locator(); + final globalVar = locator(); + final snackbarService = locator(); + final dialogService = locator(); + + final _bottomNavBarList = [ + { + 'name': 'Area\nTPS', + 'icon': Icons.location_on_outlined, + 'header': 'Area TPS', + }, + { + 'name': 'Hasil\nSuara', + 'icon': Icons.supervised_user_circle_outlined, + 'header': 'Hasil Suara', + }, + { + 'name': 'Tim \nSurvei', + 'icon': Icons.history_edu_outlined, + 'header': 'History Survei', + }, + { + 'name': 'Pengaturan', + 'icon': Icons.settings_outlined, + 'header': 'Pengaturan', + }, + ]; + + String header = 'Pengaturan'; + + List> get bottomNavBarList => _bottomNavBarList; + + final List _views = [ + CalegIndexTrackingViewRoutes.areaTpsView, + CalegIndexTrackingViewRoutes.logSuaraView, + CalegIndexTrackingViewRoutes.timSurveiView, + CalegIndexTrackingViewRoutes.pengaturanCaleg2View, + ]; + + Future init() async { + String? level = await mySharedPrefs.getString('level'); + log.i('level: $level'); + if (level != 'caleg') { + mySharedPrefs.clear(); + snackbarService.showSnackbar( + message: 'Anda tidak memiliki akses', + title: 'Akses Ditolak', + duration: const Duration(milliseconds: 2500), + ); + navigationService.clearStackAndShow(Routes.loginScreenView); + } + setIndex(3); + } + + void handleNavigation(int index) { + // log.d("handleNavigation: $index"); + // log.d("currentIndex: $currentIndex"); + + // if (currentIndex == index) return; + + setIndex(index); + header = _bottomNavBarList[index]['header'] as String; + navigationService.navigateTo( + _views[index], + id: 3, + ); + } + + logout() async { + dialogService + .showConfirmationDialog( + title: 'Konfirmasi', + description: 'Apakah anda yakin ingin keluar?', + cancelTitle: 'Batal', + confirmationTitle: 'Keluar', + ) + .then((value) async { + if (value!.confirmed) { + await mySharedPrefs.clear(); + navigationService.clearStackAndShow(Routes.loginScreenView); + } + }); + } +} diff --git a/lib/ui/views/caleg_index_tracking/log_suara/log_suara_view.dart b/lib/ui/views/caleg_index_tracking/log_suara/log_suara_view.dart new file mode 100644 index 0000000..97e9b8f --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/log_suara/log_suara_view.dart @@ -0,0 +1,161 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; + +import '../../../../app/themes/app_colors.dart'; +import '../../../../app/themes/app_text.dart'; +import './log_suara_view_model.dart'; + +class LogSuaraView extends StatelessWidget { + const LogSuaraView({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => LogSuaraViewModel(), + onViewModelReady: (LogSuaraViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + LogSuaraViewModel model, + Widget? child, + ) { + return Scaffold( + body: WillPopScope( + onWillPop: () async { + // model.log.i('backPressed: ${model.globalVar.backPressed}'); + if (model.globalVar.backPressed == 'exitApp') { + // model.back(); + model.quitApp(context); + } + return false; + }, + child: SafeArea( + child: SafeArea( + child: Padding( + padding: const EdgeInsets.all(20), + child: Column( + children: [ + Container( + padding: const EdgeInsets.all(15), + width: double.infinity, + decoration: BoxDecoration( + border: Border.all(color: Colors.grey), + borderRadius: BorderRadius.circular(10), + color: warningColor, + ), + child: Row( + children: [ + Text( + "Jumlah Suara : ", + style: italicTextStyle.copyWith( + fontSize: 16, + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(width: 10), + Expanded( + child: Text( + '${model.counter} suara', + style: boldTextStyle.copyWith( + fontSize: 16, + fontWeight: FontWeight.bold, + ), + ), + ), + const Icon( + Icons.people_alt_outlined, + color: fontColor, + ), + // SizedBox(width: 20), + ], + ), + ), + const SizedBox(height: 20), + Expanded( + child: Container( + alignment: model.isBusy + ? Alignment.center + : model.status == true + ? model.counter > 0 + ? Alignment.topCenter + : Alignment.center + : Alignment.center, + height: double.infinity, + width: double.infinity, + padding: const EdgeInsets.all(10), + decoration: BoxDecoration( + border: Border.all(color: Colors.grey), + borderRadius: BorderRadius.circular(10), + color: warningColor, + ), + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + // mainAxisSize: MainAxisSize.min, + children: [ + if (model.isBusy) + const Center( + child: CircularProgressIndicator()), + if (!model.isBusy && + model.status == true && + model.counter > 0) + for (var i = 0; i < model.counter; i++) + Card( + child: ListTile( + // leading is datetime dummy + leading: Text(model.myFunction + .convertDateTime2(model + .listPemilih[i].createdAt!)), + title: Text( + model.listPemilih[i].namaPemilih!, + style: boldTextStyle, + ), + subtitle: Text( + model.listPemilih[i].namaArea!, + ), + trailing: IconButton( + icon: const Icon( + Icons.info_outline, + color: mainColor, + ), + onPressed: () { + model.showDetailPemilih( + model.listPemilih[i], + ); + }, + ), + ), + ), + if (!model.isBusy && + model.status == true && + model.counter == 0) + const Center( + child: Text( + 'Belum ada data', + style: boldTextStyle, + ), + ), + if (!model.isBusy && model.status == false) + const Center( + child: Text( + 'Error: Gagal mengambil data dari server', + style: boldTextStyle, + ), + ), + ], + ), + ), + ), + ), + ], + ), + ), + ), + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/log_suara/log_suara_view_model.dart b/lib/ui/views/caleg_index_tracking/log_suara/log_suara_view_model.dart new file mode 100644 index 0000000..ce2f1e9 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/log_suara/log_suara_view_model.dart @@ -0,0 +1,48 @@ +import '../../../../app/app.bottomsheets.dart'; +import '../../../../app/app.logger.dart'; +import '../../../../app/core/custom_base_view_model.dart'; +import '../../../../model/my_response.model.dart'; +import '../../../../model/pemilih_model.dart'; + +class LogSuaraViewModel extends CustomBaseViewModel { + final log = getLogger('LogSuaraViewModel'); + int counter = 0; + List listPemilih = []; + bool status = false; + + Future init() async { + globalVar.backPressed = 'exitApp'; + String? idCaleg = await mySharedPrefs.getString('id'); + await getData(idCaleg!); + } + + getData(String idCaleg) async { + setBusy(true); + + try { + var response = await httpService.get('caleg/suara/$idCaleg'); + MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data); + PemilihDetailModel pemilihDetailModel = + PemilihDetailModel.fromJson(myResponseModel.data); + listPemilih = pemilihDetailModel.pemilihModel!; + counter = listPemilih.length; + + status = true; + } catch (e) { + log.e('error: $e'); + status = false; + } finally { + setBusy(false); + } + } + + showDetailPemilih(PemilihModel listPemilih) async { + await bottomSheetService.showCustomSheet( + variant: BottomSheetType.detailSuaraPemilihBottomSheetView, + title: 'Detail Suara Pemilih', + description: 'Detail Suara Pemilih', + // isScrollControlled: true, + data: listPemilih, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view.dart b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view.dart new file mode 100644 index 0000000..61a0b78 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view.dart @@ -0,0 +1,191 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; +import 'package:stacked_services/stacked_services.dart'; +import 'package:validatorless/validatorless.dart'; + +import '../../../../../app/themes/app_colors.dart'; +import '../../../../../app/themes/app_text.dart'; +import '../../../../widgets/my_textformfield.dart'; +import './ganti_password_dialog_view_model.dart'; + +class GantiPasswordDialogView extends StatelessWidget { + final DialogRequest? request; + final Function(DialogResponse)? completer; + + const GantiPasswordDialogView({ + Key? key, + this.request, + this.completer, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => GantiPasswordDialogViewModel(), + onViewModelReady: (GantiPasswordDialogViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + GantiPasswordDialogViewModel model, + Widget? child, + ) { + return Dialog( + child: Container( + padding: const EdgeInsets.all(20), + child: Form( + key: model.globalKey, + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Text( + 'Ganti Password', + style: boldTextStyle.copyWith(fontSize: 18), + ), + const SizedBox(height: 20), + MyTextFormField( + labelText: 'Password Lama', + hintText: 'Masukkan password lama', + obscureText: model.isPasswordLamaObscure, + suffixIcon: IconButton( + onPressed: () { + model.isPasswordLamaObscure = + !model.isPasswordLamaObscure; + model.notifyListeners(); + }, + icon: Icon( + model.isPasswordLamaObscure + ? Icons.visibility_off + : Icons.visibility, + ), + ), + controller: model.passwordLamaController, + validator: Validatorless.multiple( + [ + Validatorless.required( + 'Password lama tidak boleh kosong'), + Validatorless.min( + 8, 'Password lama minimal 8 karakter'), + Validatorless.compare( + // compare with thePasswordLamaController + model.thePasswordLamaController, + 'Password lama tidak sama', + ) + ], + ), + ), + const SizedBox(height: 10), + MyTextFormField( + labelText: 'Password Baru', + hintText: 'Masukkan password baru', + obscureText: model.isPasswordBaruObscure, + controller: model.passwordBaruController, + suffixIcon: IconButton( + onPressed: () { + model.isPasswordBaruObscure = + !model.isPasswordBaruObscure; + model.notifyListeners(); + }, + icon: Icon( + model.isPasswordBaruObscure + ? Icons.visibility_off + : Icons.visibility, + ), + ), + validator: Validatorless.multiple( + [ + Validatorless.required( + 'Password baru tidak boleh kosong'), + Validatorless.min( + 8, 'Password baru minimal 8 karakter'), + ], + ), + ), + const SizedBox(height: 10), + MyTextFormField( + labelText: 'Konfirmasi Password Baru', + hintText: 'Masukkan konfirmasi password baru', + obscureText: model.isKonfirmasiPasswordBaruObscure, + controller: model.konfirmasiPasswordBaruController, + suffixIcon: IconButton( + onPressed: () { + model.isKonfirmasiPasswordBaruObscure = + !model.isKonfirmasiPasswordBaruObscure; + model.notifyListeners(); + }, + icon: Icon( + model.isKonfirmasiPasswordBaruObscure + ? Icons.visibility_off + : Icons.visibility, + ), + ), + validator: Validatorless.multiple( + [ + Validatorless.required( + 'Konfirmasi password baru tidak boleh kosong'), + Validatorless.min( + 8, 'Konfirmasi password baru minimal 8 karakter'), + Validatorless.compare( + model.passwordBaruController, + 'Password baru tidak sama', + ), + ], + ), + ), + const SizedBox(height: 20), + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + TextButton( + onPressed: () { + if (model.globalKey.currentState!.validate()) { + // remove keyboard + FocusScope.of(context).unfocus(); + + model.dialogService + .showConfirmationDialog( + title: 'Konfirmasi', + description: + 'Apakah anda yakin ingin mengubah password?', + cancelTitle: 'Batal', + confirmationTitle: 'Ya', + ) + .then( + (response) async { + if (response!.confirmed) { + // completer!(DialogResponse(confirmed: true)); + // model.log.i('Password berhasil diubah'); + bool res = await model.gantiPassword(); + // model.log.i('res: $res'); + if (res) { + completer!(DialogResponse(confirmed: true)); + model.log.i('Password berhasil diubah'); + } + } else { + model.log.i('Password gagal diubah'); + } + }, + ); + } + }, + child: const Text('Simpan'), + ), + TextButton( + onPressed: () => + completer!(DialogResponse(confirmed: false)), + child: const Text( + 'Batal', + style: TextStyle(color: dangerColor), + ), + ), + ], + ), + ], + ), + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view_model.dart b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view_model.dart new file mode 100644 index 0000000..3aef1ea --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/ganti_password_dialog/ganti_password_dialog_view_model.dart @@ -0,0 +1,48 @@ +import 'package:dio/dio.dart'; +import 'package:flutter/material.dart'; + +import '../../../../../app/app.logger.dart'; +import '../../../../../app/core/custom_base_view_model.dart'; + +class GantiPasswordDialogViewModel extends CustomBaseViewModel { + final log = getLogger('GantiPasswordDialogViewModel'); + + // form variable + final globalKey = GlobalKey(); + TextEditingController passwordLamaController = TextEditingController(); + TextEditingController passwordBaruController = TextEditingController(); + TextEditingController konfirmasiPasswordBaruController = + TextEditingController(); + + TextEditingController thePasswordLamaController = TextEditingController(); + + bool isPasswordLamaObscure = true; + bool isPasswordBaruObscure = true; + bool isKonfirmasiPasswordBaruObscure = true; + + Future init() async { + globalVar.backPressed = 'normalBack'; + String? passwordLama = await mySharedPrefs.getString('password'); + thePasswordLamaController.text = passwordLama!; + } + + Future gantiPassword() async { + setBusy(true); + + try { + String? idCaleg = await mySharedPrefs.getString('id'); + var formData = FormData.fromMap({ + 'id_caleg': idCaleg, + 'password_lama': passwordLamaController.text, + 'password_baru': passwordBaruController.text, + }); + await httpService.postWithFormData('login/ganti_pass_caleg', formData); + return true; + } catch (e) { + log.e(e.toString()); + return false; + } finally { + setBusy(false); + } + } +} diff --git a/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view.dart b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view.dart new file mode 100644 index 0000000..9eed992 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view.dart @@ -0,0 +1,26 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; + +import '../pengaturan_caleg_view.dart'; +import './pengaturan_caleg2_view_model.dart'; + +class PengaturanCaleg2View extends StatelessWidget { + const PengaturanCaleg2View({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.nonReactive( + viewModelBuilder: () => PengaturanCaleg2ViewModel(), + onViewModelReady: (PengaturanCaleg2ViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + PengaturanCaleg2ViewModel model, + Widget? child, + ) { + return const PengaturanCalegView(); + }, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view_model.dart b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view_model.dart new file mode 100644 index 0000000..a048c53 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg2/pengaturan_caleg2_view_model.dart @@ -0,0 +1,5 @@ +import '../../../../../app/core/custom_base_view_model.dart'; + +class PengaturanCaleg2ViewModel extends CustomBaseViewModel { + Future init() async {} +} diff --git a/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view.dart b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view.dart new file mode 100644 index 0000000..acedf68 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view.dart @@ -0,0 +1,206 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; + +import '../../../../app/themes/app_colors.dart'; +import '../../../../app/themes/app_text.dart'; +import '../../../widgets/top_container.dart'; +import './pengaturan_caleg_view_model.dart'; + +class PengaturanCalegView extends StatelessWidget { + const PengaturanCalegView({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => PengaturanCalegViewModel(), + onViewModelReady: (PengaturanCalegViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + PengaturanCalegViewModel model, + Widget? child, + ) { + return Scaffold( + body: WillPopScope( + onWillPop: () async { + // model.log.i('backPressed: ${model.globalVar.backPressed}'); + if (model.globalVar.backPressed == 'exitApp') { + // model.back(); + model.quitApp(context); + } + return false; + }, + child: SafeArea( + child: Padding( + padding: const EdgeInsets.all(20), + child: SingleChildScrollView( + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + TopContainer( + title: 'Jumlah Suara', + value: '${model.suaraCounter} Suara', + icon: Icons.people_alt_outlined, + background: warningColor, + ), + const SizedBox(height: 10), + TopContainer( + title: 'Area\nTPS', + value: '${model.suaraCounter} TPS', + icon: Icons.location_on_outlined, + background: orangeColor, + ), + const SizedBox(height: 10), + TopContainer( + title: 'Jumlah Tim Survei', + value: '${model.timSurverCounter} Orang', + icon: Icons.co_present_outlined, + background: greenColor, + ), + const SizedBox( + height: 20, + ), + if (model.isBusy) + const Center(child: CircularProgressIndicator()), + if (!model.isBusy && model.status == true) + RichText( + text: TextSpan( + text: 'Selamat Datang, ', + style: regularTextStyle, + children: [ + TextSpan( + text: 'Caleg ${model.nama}\n\n', + style: boldTextStyle, + ), + const TextSpan( + text: 'Sila tekan menu', + style: regularTextStyle, + ), + TextSpan( + text: ' Hasil Suara ', + style: boldTextStyle.copyWith( + color: greenColor, + fontStyle: FontStyle.italic, + ), + ), + const TextSpan( + text: + 'untuk mengetahui jumlah suara.\n\nDan sila tekan menu', + style: regularTextStyle, + ), + TextSpan( + text: ' Tim Survei ', + style: boldTextStyle.copyWith( + color: greenColor, + fontStyle: FontStyle.italic, + ), + ), + const TextSpan( + text: + 'untuk mengetahui jumlah tim survei anda.\n\n', + style: regularTextStyle, + ), + const TextSpan( + text: 'Dan sila tekan menu', + style: regularTextStyle, + ), + TextSpan( + text: ' Area TPS ', + style: boldTextStyle.copyWith( + color: greenColor, + fontStyle: FontStyle.italic, + ), + ), + const TextSpan( + text: 'untuk mengetahui Area TPS anda.\n\n', + style: regularTextStyle, + ), + const TextSpan( + text: + 'Jika terjadi kesalahan pada data, silahkan hubungi admin.\n\n', + style: regularTextStyle, + ), + const TextSpan( + text: 'Aplikasi dibuat oleh :', + style: italicTextStyle, + ), + TextSpan( + text: ' Kicap Karan\n', + style: boldTextStyle.copyWith( + color: mainColor, + ), + ), + TextSpan( + text: 'http://www.kicap-karan.com\n', + style: boldTextStyle.copyWith( + color: mainColor, + ), + ), + ], + ), + ), + if (!model.isBusy && model.status == false) + RichText( + text: TextSpan( + text: 'Selamat Datang, ', + style: regularTextStyle, + children: [ + TextSpan( + text: '${model.nama}\n', + style: boldTextStyle, + ), + const TextSpan( + text: 'Terjadi ', + style: regularTextStyle, + ), + TextSpan( + text: 'Error ', + style: boldTextStyle.copyWith( + color: redColor, + fontStyle: FontStyle.italic, + ), + ), + const TextSpan( + text: 'pada saat mengambil data\n', + style: regularTextStyle, + ), + const TextSpan( + text: 'Silahkan coba lagi dengan menekan icon', + style: regularTextStyle, + ), + TextSpan( + text: ' Pengaturan\n', + style: boldTextStyle.copyWith( + color: greenColor, + fontStyle: FontStyle.italic, + ), + ), + const TextSpan( + text: 'di pojok kanan bawah\n', + style: regularTextStyle, + ), + ], + ), + ), + ], + ), + ), + ), + ), + ), + // with setting icon + floatingActionButton: FloatingActionButton( + backgroundColor: warningColor, + onPressed: () { + model.gantiPassword(); + }, + child: const Icon(Icons.settings, color: fontColor), + ), + floatingActionButtonLocation: FloatingActionButtonLocation.endFloat, + ); + }, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view_model.dart b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view_model.dart new file mode 100644 index 0000000..778b3c8 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/pengaturan_caleg/pengaturan_caleg_view_model.dart @@ -0,0 +1,52 @@ +import '../../../../app/app.dialogs.dart'; +import '../../../../app/app.logger.dart'; +import '../../../../app/core/custom_base_view_model.dart'; +import '../../../../model/my_response.model.dart'; + +class PengaturanCalegViewModel extends CustomBaseViewModel { + final log = getLogger('PengaturanCalegViewModel'); + + int timSurverCounter = 0; + int suaraCounter = 0; + int areaCounter = 0; + bool status = false; + String? nama; + + Future init() async { + globalVar.backPressed = 'exitApp'; + String? idCaleg = await mySharedPrefs.getString('id'); + nama = await mySharedPrefs.getString('nama'); + await getData(idCaleg!); + } + + getData(String idCaleg) async { + setBusy(true); + + try { + var response = await httpService.get('caleg/detail/$idCaleg'); + MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data); + timSurverCounter = myResponseModel.data['jumlah_tim_survei']; + suaraCounter = myResponseModel.data['jumlah_suara']; + areaCounter = myResponseModel.data['jumlah_area']; + status = true; + } catch (e) { + log.e(e.toString()); + status = false; + } finally { + setBusy(false); + } + } + + gantiPassword() async { + var res = await dialogService.showCustomDialog( + variant: DialogType.gantiPasswordDialogView, + title: 'Ganti Password', + mainButtonTitle: 'Simpan', + barrierDismissible: false, + ); + + if (res!.confirmed) { + snackbarService.showSnackbar(message: 'Password berhasil diubah'); + } + } +} diff --git a/lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view.dart b/lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view.dart new file mode 100644 index 0000000..642978d --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view.dart @@ -0,0 +1,132 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; + +import '../../../../app/themes/app_colors.dart'; +import '../../../../app/themes/app_text.dart'; +import '../../../widgets/top_container.dart'; +import './tim_survei_view_model.dart'; + +class TimSurveiView extends StatelessWidget { + const TimSurveiView({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => TimSurveiViewModel(), + onViewModelReady: (TimSurveiViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + TimSurveiViewModel model, + Widget? child, + ) { + return Scaffold( + body: WillPopScope( + onWillPop: () async { + // model.log.i('backPressed: ${model.globalVar.backPressed}'); + if (model.globalVar.backPressed == 'exitApp') { + // model.back(); + model.quitApp(context); + } + return false; + }, + child: SafeArea( + child: Container( + height: MediaQuery.of(context).size.height, + padding: const EdgeInsets.all(20), + child: Column( + children: [ + TopContainer( + title: 'Tim\nSurvei', + value: '${model.jumlahTimSurvei} Orang', + icon: Icons.people_alt_outlined, + background: orangeColor, + ), + const SizedBox(height: 15), + Expanded( + child: Container( + alignment: model.isBusy + ? Alignment.center + : (model.listTimSurveiModel.isNotEmpty + ? null + : Alignment.center), + width: double.infinity, + height: double.infinity, + padding: const EdgeInsets.all(10), + decoration: BoxDecoration( + border: Border.all(color: Colors.grey), + borderRadius: BorderRadius.circular(10), + color: warningColor, + ), + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + if (model.isBusy) + const Center( + child: LinearProgressIndicator( + minHeight: 5, + color: mainColor, + ), + ), + if (!model.isBusy && + model.listTimSurveiModel.isNotEmpty) + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // create 10 list of survei person using card + for (int i = 0; + i < model.jumlahTimSurvei; + i++) + Card( + child: ListTile( + leading: Text('${i + 1}'), + title: Text( + model.listTimSurveiModel[i].nama!, + ), + subtitle: Text( + model.listTimSurveiModel[i].nik!, + style: italicTextStyle, + ), + trailing: IconButton( + onPressed: () { + model.checkSuara(model + .listTimSurveiModel[i]); + }, + icon: const Icon( + Icons.list_alt_outlined, + color: mainColor, + ), + )), + ), + ], + ), + + // if listTimSurveiModel is empty + if (!model.isBusy && + model.listTimSurveiModel.isEmpty) + Center( + child: Text( + model.status == true + ? 'Data Tim Survei Kosong\n' + 'Hubungi Admin Untuk\nTambahkan Tim Survei Baru' + : 'Gagal Mengambil Data Tim Survei', + textAlign: TextAlign.center, + ), + ), + ], + ), + ), + ), + ) + ], + ), + ), + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view_model.dart b/lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view_model.dart new file mode 100644 index 0000000..c882c53 --- /dev/null +++ b/lib/ui/views/caleg_index_tracking/tim_survei/tim_survei_view_model.dart @@ -0,0 +1,59 @@ +import '../../../../app/app.bottomsheets.dart'; +import '../../../../app/app.logger.dart'; +import '../../../../app/core/custom_base_view_model.dart'; +import '../../../../model/my_response.model.dart'; +import '../../../../model/tim_survei_model.dart'; + +class TimSurveiViewModel extends CustomBaseViewModel { + final log = getLogger('TimSurveiViewModel'); + + // variabel + List listTimSurveiModel = []; + int jumlahTimSurvei = 0; + bool status = false; + + Future init() async { + globalVar.backPressed = 'exitApp'; + String? idCaleg = await mySharedPrefs.getString('id'); + // log.i('idCaleg: $idCaleg'); + await getData(idCaleg!); + } + + getData(String idCaleg) async { + setBusy(true); + // easyLoading.showLoading(); + // globalVar.backPressed = 'cantBack'; + try { + var response = await httpService.get('survei/caleg/$idCaleg'); + MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data); + // log.i('myResponseModel: ${myResponseModel.data}'); + TimSurveiListModel timSurveiListModel = + TimSurveiListModel.fromJson(myResponseModel.data); + // log.i('timSurveiListModel: ${timSurveiListModel.survei}'); + listTimSurveiModel = timSurveiListModel.survei ?? []; + jumlahTimSurvei = timSurveiListModel.jumlah!; + // log.i('listTimSurveiModel: $listTimSurveiModel'); + // log.i('jumlahTimSurvei: $jumlahTimSurvei'); + status = true; + } catch (e) { + log.e(e.toString()); + status = false; + } finally { + setBusy(false); + // globalVar.backPressed = 'exitApp'; + // easyLoading.dismissLoading(); + } + } + + checkSuara(TimSurveiModel timSurveiModel) async { + await bottomSheetService.showCustomSheet( + data: timSurveiModel.nik, + barrierDismissible: true, + isScrollControlled: true, + title: 'Detail Suara Tim Survei ${timSurveiModel.nama}', + description: 'Tim Survei', + ignoreSafeArea: false, + variant: BottomSheetType.detailSuaraBottomSheetView, + ); + } +} diff --git a/lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view.dart b/lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view.dart new file mode 100644 index 0000000..55fca0d --- /dev/null +++ b/lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view.dart @@ -0,0 +1,141 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; +import 'package:stacked_services/stacked_services.dart'; + +import '../../../app/themes/app_colors.dart'; +import '../../../app/themes/app_text.dart'; +import './detail_suara_bottom_sheet_view_model.dart'; + +class DetailSuaraBottomSheetView extends StatelessWidget { + final SheetRequest? request; + final Function(SheetResponse)? completer; + + const DetailSuaraBottomSheetView({ + Key? key, + this.request, + this.completer, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => DetailSuaraBottomSheetViewModel(), + onViewModelReady: (DetailSuaraBottomSheetViewModel model) async { + await model.init(request!); + }, + builder: ( + BuildContext context, + DetailSuaraBottomSheetViewModel model, + Widget? child, + ) { + return SafeArea( + child: Container( + width: MediaQuery.of(context).size.width, + padding: const EdgeInsets.all(20), + alignment: Alignment.topCenter, + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.only( + topLeft: Radius.circular(20), + topRight: Radius.circular(20), + ), + ), + child: Column( + children: [ + Text( + request!.title!, + style: italicTextStyle.copyWith( + fontSize: 15, + fontWeight: FontWeight.bold, + ), + ), + const SizedBox(height: 20), + Expanded( + child: Container( + padding: const EdgeInsets.all(15), + decoration: BoxDecoration( + color: warningColor, + borderRadius: BorderRadius.circular(10), + ), + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + // mainAxisSize: MainAxisSize.min, + children: [ + Text( + 'Jumlah Suara: ${model.counter}', + style: boldTextStyle, + ), + const SizedBox(height: 10), + if (model.isBusy) + const Center(child: CircularProgressIndicator()), + if (!model.isBusy && + model.status == true && + model.counter > 0) + for (var i = 0; i < model.counter; i++) + Card( + child: ListTile( + // leading is datetime dummy + leading: Text(model.myFunction + .convertDateTime2( + model.listPemilih[i].createdAt!)), + title: Text( + model.listPemilih[i].namaPemilih!, + style: boldTextStyle, + ), + subtitle: Column( + crossAxisAlignment: + CrossAxisAlignment.start, + children: [ + if (request!.description == 'Caleg') + Text( + model.listPemilih[i].namaTimSurvei!, + style: italicTextStyle, + ), + Text( + model.listPemilih[i].namaArea!, + ), + ], + ), + trailing: IconButton( + icon: const Icon( + Icons.info_outline, + color: mainColor, + ), + onPressed: () { + model.showDetailPemilih( + model.listPemilih[i], + ); + }, + ), + ), + ), + if (!model.isBusy && + model.status == true && + model.counter == 0) + const Center( + child: Text( + 'Belum ada data', + style: boldTextStyle, + ), + ), + if (!model.isBusy && model.status == false) + const Center( + child: Text( + 'Error: Gagal mengambil data dari server', + style: boldTextStyle, + ), + ), + ], + ), + ), + ), + ), + ], + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view_model.dart b/lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view_model.dart new file mode 100644 index 0000000..87c77c2 --- /dev/null +++ b/lib/ui/views/detail_suara_bottom_sheet/detail_suara_bottom_sheet_view_model.dart @@ -0,0 +1,54 @@ +import '../../../app/app.bottomsheets.dart'; +import '../../../app/app.logger.dart'; +import '../../../app/core/custom_base_view_model.dart'; +import '../../../model/my_response.model.dart'; +import '../../../model/pemilih_model.dart'; + +class DetailSuaraBottomSheetViewModel extends CustomBaseViewModel { + final log = getLogger('DetailSuaraBottomSheetViewModel'); + bool status = false; + + List listPemilih = []; + int counter = 0; + + Future init(sheetRequest) async { + String id = sheetRequest.data.toString(); + String status = sheetRequest.description; + String? idCaleg = await mySharedPrefs.getString('id'); + await getData(id, status, idCaleg!); + } + + getData(String id, String status, String idCaleg) async { + setBusy(true); + + try { + // var response = await httpService.get('caleg/suara/$id'); + String url = status == 'Tim Survei' + ? 'survei/suara/$id' + : 'area/suara/$id/$idCaleg'; + + var response = await httpService.get(url); + MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data); + PemilihDetailModel pemilihDetailModel = + PemilihDetailModel.fromJson(myResponseModel.data); + + listPemilih = pemilihDetailModel.pemilihModel!; + counter = pemilihDetailModel.jumlah!; + this.status = true; + } catch (e) { + this.status = false; + } finally { + setBusy(false); + } + } + + showDetailPemilih(PemilihModel listPemilih) async { + await bottomSheetService.showCustomSheet( + variant: BottomSheetType.detailSuaraPemilihBottomSheetView, + title: 'Detail Suara Pemilih', + description: 'Detail Suara Pemilih', + // isScrollControlled: true, + data: listPemilih, + ); + } +} diff --git a/lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view.dart b/lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view.dart new file mode 100644 index 0000000..42439ac --- /dev/null +++ b/lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view.dart @@ -0,0 +1,164 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_dotenv/flutter_dotenv.dart'; +import 'package:stacked/stacked.dart'; +import 'package:stacked_services/stacked_services.dart'; + +import '../../../../../app/themes/app_colors.dart'; +import '../../../../../app/themes/app_text.dart'; +import './detail_suara_pemilih_bottom_sheet_view_model.dart'; + +class DetailSuaraPemilihBottomSheetView extends StatelessWidget { + final SheetRequest request; + final Function(SheetResponse)? completer; + + const DetailSuaraPemilihBottomSheetView({ + Key? key, + required this.request, + this.completer, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => DetailSuaraPemilihBottomSheetViewModel(), + onViewModelReady: (DetailSuaraPemilihBottomSheetViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + DetailSuaraPemilihBottomSheetViewModel model, + Widget? child, + ) { + return SafeArea( + child: Container( + width: MediaQuery.of(context).size.width, + padding: const EdgeInsets.all(20), + alignment: Alignment.topCenter, + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.only( + topLeft: Radius.circular(16.0), + topRight: Radius.circular(16.0), + ), + ), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Text( + request.title!, + style: boldTextStyle.copyWith( + fontSize: 16, + color: fontColor, + ), + ), + const SizedBox(height: 15), + Container( + height: 100, + width: 150, + decoration: BoxDecoration( + color: mainColor, + borderRadius: BorderRadius.circular(10), + ), + child: GestureDetector( + onTap: () { + model.showImage( + context, + dotenv.env['url']! + request.data!.img!, + ); + }, + child: ClipRRect( + borderRadius: BorderRadius.circular(10), + child: Image.network( + dotenv.env['url']! + request.data!.img!, + fit: BoxFit.fill, + errorBuilder: (context, error, stackTrace) { + return const Center( + child: Icon( + Icons.error, + color: backgroundColor, + size: 50, + ), + ); + }, + ), + ), + ), + ), + _DetailChildWidget( + title: 'Nama', + value: request.data!.namaPemilih!, + ), + _DetailChildWidget( + title: 'No KTP /\nNo HP', + value: request.data!.nikNomorHp!, + ), + _DetailChildWidget( + title: 'Tanggal/\nWaktu', + value: model.myFunction + .convertDateTime2(request.data!.createdAt!), + ), + _DetailChildWidget( + title: 'Caleg', value: request.data!.namaCaleg!), + _DetailChildWidget( + title: 'Tim Survei', + value: request.data!.namaTimSurvei!, + ), + ], + ), + ), + ); + }, + ); + } +} + +class _DetailChildWidget extends StatelessWidget { + const _DetailChildWidget({ + Key? key, + required this.title, + required this.value, + }) : super(key: key); + final String title; + final String value; + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.only(top: 15), + child: Row( + children: [ + Expanded( + flex: 3, + child: Text( + title, + style: boldTextStyle.copyWith( + fontSize: 16, + color: fontColor, + ), + ), + ), + Expanded( + flex: 1, + child: Text( + ' : ', + style: boldTextStyle.copyWith( + fontSize: 16, + color: fontColor, + ), + ), + ), + Expanded( + flex: 7, + child: Text( + value, + style: italicTextStyle.copyWith( + fontSize: 16, + color: fontColor, + ), + ), + ), + ], + ), + ); + } +} diff --git a/lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view_model.dart b/lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view_model.dart new file mode 100644 index 0000000..f5600df --- /dev/null +++ b/lib/ui/views/detail_suara_pemilih_bottom_sheet/detail_suara_pemilih_bottom_sheet_view_model.dart @@ -0,0 +1,23 @@ +import 'package:easy_image_viewer/easy_image_viewer.dart'; +import 'package:flutter/material.dart'; + +import '../../../../../app/app.logger.dart'; +import '../../../../../app/core/custom_base_view_model.dart'; + +class DetailSuaraPemilihBottomSheetViewModel extends CustomBaseViewModel { + final log = getLogger('DetailSuaraPemilihBottomSheetViewModel'); + Future init() async {} + + showImage(BuildContext context, String? url) async { + log.i(url); + showImageViewer( + context, + Image.network( + url!, + fit: BoxFit.fill, + ).image, + swipeDismissible: true, + doubleTapZoomable: true, + ); + } +} diff --git a/lib/ui/views/login_screen/login_screen_view.dart b/lib/ui/views/login_screen/login_screen_view.dart new file mode 100644 index 0000000..08ba85f --- /dev/null +++ b/lib/ui/views/login_screen/login_screen_view.dart @@ -0,0 +1,129 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; +import 'package:validatorless/validatorless.dart'; + +import '../../../app/themes/app_colors.dart'; +import '../../../app/themes/app_text.dart'; +import '../../widgets/my_button.dart'; +import '../../widgets/my_textformfield.dart'; +import './login_screen_view_model.dart'; + +class LoginScreenView extends StatelessWidget { + const LoginScreenView({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => LoginScreenViewModel(), + onViewModelReady: (LoginScreenViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + LoginScreenViewModel model, + Widget? child, + ) { + return Scaffold( + backgroundColor: warningColor, + body: WillPopScope( + onWillPop: () async { + model.log.i('backPressed: ${model.globalVar.backPressed}'); + if (model.globalVar.backPressed == 'backNormal') { + // model.back(); + model.quitApp(context); + } + return false; + }, + child: SafeArea( + child: Padding( + padding: + const EdgeInsets.symmetric(horizontal: 15, vertical: 10), + child: SingleChildScrollView( + child: Form( + key: model.formKey, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + mainAxisSize: MainAxisSize.min, + children: [ + const SizedBox( + height: 50, + ), + Center( + child: Image.asset( + 'assets/logo.png', + width: 200, + height: 200, + ), + ), + const SizedBox( + height: 10, + ), + const Text( + 'Halaman Login', + ), + const Text( + '(Caleg App)', + style: italicTextStyle, + ), + const SizedBox( + height: 20, + ), + MyTextFormField( + controller: model.usernameController, + labelText: 'Username', + hintText: 'Masukkan Username', + suffixIcon: const Icon(Icons.person), + validator: Validatorless.required( + 'Username tidak boleh kosong'), + ), + const SizedBox( + height: 15, + ), + MyTextFormField( + controller: model.passwordController, + hintText: 'Masukkan Password', + labelText: 'Password', + suffixIcon: GestureDetector( + child: model.isPasswordVisible + ? const Icon(Icons.visibility) + : const Icon(Icons.visibility_off), + onTap: () { + model.isPasswordVisible = + !model.isPasswordVisible; + model.log.i( + 'isPasswordVisible: ${model.isPasswordVisible}'); + model.notifyListeners(); + }, + ), + obscureText: !model.isPasswordVisible, + validator: Validatorless.required( + 'Password tidak boleh kosong'), + ), + const SizedBox( + height: 20, + ), + SizedBox( + width: 250, + child: MyButton( + // theBackgroundColor: lightColor, + textColor: fontColor, + text: 'Login', + onPressed: () { + if (model.formKey.currentState!.validate()) { + model.login(); + } + }, + ), + ), + ], + ), + ), + ), + ), + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/login_screen/login_screen_view_model.dart b/lib/ui/views/login_screen/login_screen_view_model.dart new file mode 100644 index 0000000..d743115 --- /dev/null +++ b/lib/ui/views/login_screen/login_screen_view_model.dart @@ -0,0 +1,64 @@ +import 'package:dio/dio.dart'; +import 'package:flutter/material.dart'; + +import '../../../app/app.router.dart'; +import '../../../app/app.logger.dart'; +import '../../../app/core/custom_base_view_model.dart'; +import '../../../model/caleg_model.dart'; +import '../../../model/my_response.model.dart'; + +class LoginScreenViewModel extends CustomBaseViewModel { + final log = getLogger('LoginScreenViewModel'); + + // variable + final formKey = GlobalKey(); + TextEditingController usernameController = TextEditingController(); + TextEditingController passwordController = TextEditingController(); + bool isPasswordVisible = false; + + Future init() async { + globalVar.backPressed = 'backNormal'; + } + + login() async { + easyLoading.customLoading('Login..'); + globalVar.backPressed = 'cantBack'; + + try { + var formData = FormData.fromMap({ + 'username': usernameController.text, + 'password': passwordController.text, + }); + var response = + await httpService.postWithFormData('login/caleg', formData); + + MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data); + var data = myResponseModel.data; + CalegModel calegModel = CalegModel.fromJson(data); + // log.i('calegModel: ${calegModel.toJson()}'); + await mySharedPrefs.setString('id', calegModel.idCaleg!.toString()); + await mySharedPrefs.setString('nama', calegModel.namaCaleg!); + await mySharedPrefs.setString( + 'nomorUrut', calegModel.nomorUrutCaleg!.toString()); + await mySharedPrefs.setString('foto', calegModel.foto!); + await mySharedPrefs.setString('level', 'caleg'); + await mySharedPrefs.setString('password', passwordController.text); + + snackbarService.showSnackbar( + message: + 'Selamat datang kembali Calon Legislatif ${calegModel.namaCaleg}', + title: 'Login Berhasil', + duration: const Duration(milliseconds: 2500), + ); + navigationService.navigateToCalegIndexTrackingView(); + } catch (e) { + log.e('error: $e'); + } finally { + easyLoading.dismissLoading(); + globalVar.backPressed = 'backNormal'; + } + + // navigationService.pushNamedAndRemoveUntil('/home-screen'); + // await navigationService.navigateToAdminIndexTrackingView(); + } +} diff --git a/lib/ui/views/splash_screen/splash_screen_view.dart b/lib/ui/views/splash_screen/splash_screen_view.dart new file mode 100644 index 0000000..1db754a --- /dev/null +++ b/lib/ui/views/splash_screen/splash_screen_view.dart @@ -0,0 +1,92 @@ +import 'package:flutter/material.dart'; +import 'package:stacked/stacked.dart'; + +import '../../../app/themes/app_colors.dart'; +import '../../../app/themes/app_text.dart'; +import './splash_screen_view_model.dart'; + +class SplashScreenView extends StatelessWidget { + const SplashScreenView({super.key}); + + @override + Widget build(BuildContext context) { + return ViewModelBuilder.reactive( + viewModelBuilder: () => SplashScreenViewModel(), + onViewModelReady: (SplashScreenViewModel model) async { + await model.init(); + }, + builder: ( + BuildContext context, + SplashScreenViewModel model, + Widget? child, + ) { + return Scaffold( + backgroundColor: warningColor, + body: SafeArea( + child: Center( + child: Column( + children: [ + const Expanded( + flex: 1, + child: SizedBox( + height: 100, + ), + ), + Image.asset( + 'assets/logo.png', + width: 200, + height: 200, + ), + const SizedBox( + height: 10, + ), + Text( + 'SISTEM CEK SUARA', + style: boldTextStyle.copyWith( + // color: backgroundColor, + fontSize: 20, + ), + textAlign: TextAlign.center, + ), + Text( + '(Survei App)', + style: boldTextStyle.copyWith( + // color: backgroundColor, + fontStyle: FontStyle.italic, + ), + textAlign: TextAlign.center, + ), + const Expanded(child: SizedBox()), + Text( + 'Created By', + style: regularTextStyle.copyWith( + fontSize: 12, + ), + textAlign: TextAlign.center, + ), + Text( + 'Kicap Karan', + style: boldTextStyle.copyWith( + fontSize: 13, + fontStyle: FontStyle.italic, + ), + textAlign: TextAlign.center, + ), + Text( + 'www.kicap-karan.com', + style: boldTextStyle.copyWith( + fontSize: 13, + ), + ), + const SizedBox( + height: 20, + ) + ], + ), + ), + ), + ); + }, + ); + } +} diff --git a/lib/ui/views/splash_screen/splash_screen_view_model.dart b/lib/ui/views/splash_screen/splash_screen_view_model.dart new file mode 100644 index 0000000..c048cc5 --- /dev/null +++ b/lib/ui/views/splash_screen/splash_screen_view_model.dart @@ -0,0 +1,13 @@ +import '../../../app/app.logger.dart'; +import '../../../app/app.router.dart'; +import '../../../app/core/custom_base_view_model.dart'; + +class SplashScreenViewModel extends CustomBaseViewModel { + final log = getLogger('SplashScreenViewModel'); + Future init() async { + // await 3 seconds then go to login + await mySharedPrefs.clear(); + await Future.delayed(const Duration(seconds: 3)); + await navigationService.navigateTo(Routes.loginScreenView); + } +} diff --git a/lib/ui/widgets/my_button.dart b/lib/ui/widgets/my_button.dart new file mode 100644 index 0000000..37f45fc --- /dev/null +++ b/lib/ui/widgets/my_button.dart @@ -0,0 +1,38 @@ +import 'package:flutter/material.dart'; + +import '../../app/themes/app_colors.dart'; + +class MyButton extends StatelessWidget { + const MyButton({ + Key? key, + required this.text, + this.theBackgroundColor = mainColor, + this.textColor = backgroundColor, + this.onPressed, + }) : super(key: key); + + final String text; + final VoidCallback? onPressed; + final Color theBackgroundColor; + final Color textColor; + + @override + Widget build(BuildContext context) { + return ElevatedButton( + style: ElevatedButton.styleFrom( + backgroundColor: theBackgroundColor, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(30), + ), + ), + onPressed: onPressed, + child: Text( + text, + style: TextStyle( + color: textColor, + fontSize: 18, + ), + ), + ); + } +} diff --git a/lib/ui/widgets/my_textformfield.dart b/lib/ui/widgets/my_textformfield.dart new file mode 100644 index 0000000..a4ef356 --- /dev/null +++ b/lib/ui/widgets/my_textformfield.dart @@ -0,0 +1,85 @@ +import 'package:flutter/material.dart'; + +import '../../app/themes/app_colors.dart'; + +class MyTextFormField extends StatelessWidget { + const MyTextFormField({ + Key? key, + this.labelText, + this.hintText, + this.obscureText, + this.validator, + this.suffixIcon, + this.prefixIcon, + this.focusNode, + this.controller, + this.maxLines = 1, + this.onEditingComplete, + this.keyboardType = TextInputType.text, + this.initialValue, + this.readOnly = false, + this.maxLength, + }) : super(key: key); + + final String? labelText; + final String? hintText; + final bool? obscureText; + final FormFieldValidator? validator; + final Widget? suffixIcon; + final Widget? prefixIcon; + final FocusNode? focusNode; + final TextEditingController? controller; + final int maxLines; + final VoidCallback? onEditingComplete; + final TextInputType keyboardType; + final String? initialValue; + final bool readOnly; + final int? maxLength; + + @override + Widget build(BuildContext context) { + return TextFormField( + maxLength: maxLength, + readOnly: readOnly, + initialValue: initialValue, + onEditingComplete: onEditingComplete, + maxLines: maxLines, + controller: controller, + focusNode: focusNode, + obscureText: obscureText ?? false, + keyboardType: keyboardType, + decoration: InputDecoration( + prefixIcon: prefixIcon, + suffixIcon: suffixIcon, + enabledBorder: const OutlineInputBorder( + borderRadius: BorderRadius.all(Radius.circular(25)), + borderSide: BorderSide( + // color: mainColor, + ), + ), + focusedBorder: const OutlineInputBorder( + borderRadius: BorderRadius.all(Radius.circular(25)), + borderSide: BorderSide( + // color: mainColor, + ), + ), + focusedErrorBorder: const OutlineInputBorder( + borderRadius: BorderRadius.all(Radius.circular(25)), + borderSide: BorderSide( + color: dangerColor, + ), + ), + errorBorder: const OutlineInputBorder( + borderRadius: BorderRadius.all(Radius.circular(25)), + borderSide: BorderSide( + color: dangerColor, + ), + ), + labelText: labelText, + hintText: hintText, + labelStyle: const TextStyle(color: fontColor), + ), + validator: validator, + ); + } +} diff --git a/lib/ui/widgets/top_container.dart b/lib/ui/widgets/top_container.dart new file mode 100644 index 0000000..e449f61 --- /dev/null +++ b/lib/ui/widgets/top_container.dart @@ -0,0 +1,73 @@ +import 'package:flutter/material.dart'; + +import '../../app/themes/app_colors.dart'; + +class TopContainer extends StatelessWidget { + const TopContainer({ + super.key, + required this.title, + required this.value, + required this.icon, + required this.background, + }); + + final String title; + final String value; + final IconData icon; + final Color background; + + @override + Widget build(BuildContext context) { + return Container( + padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 10), + width: double.infinity, + decoration: BoxDecoration( + color: background, + borderRadius: BorderRadius.circular(10), + ), + child: Row( + // mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Expanded( + flex: 3, + child: Text( + title, + style: const TextStyle( + color: fontGrey, + fontSize: 20, + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.justify, + ), + ), + const Expanded( + flex: 1, + child: Text( + ':', + style: TextStyle( + color: fontGrey, + fontSize: 20, + fontWeight: FontWeight.bold, + ), + ), + ), + Expanded( + flex: 5, + child: Text( + value, + style: const TextStyle( + color: fontGrey, + fontSize: 20, + fontWeight: FontWeight.bold, + ), + ), + ), + Icon( + icon, + color: fontGrey, + ), + ], + ), + ); + } +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..2f77ecf --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,938 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a + url: "https://pub.dev" + source: hosted + version: "61.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 + url: "https://pub.dev" + source: hosted + version: "5.13.0" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + build: + dependency: transitive + description: + name: build + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_config: + dependency: transitive + description: + name: build_config + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" + source: hosted + version: "1.1.1" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: "5f02d73eb2ba16483e693f80bee4f088563a820e47d1027d4cdfe62b5bb43e65" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_runner: + dependency: "direct dev" + description: + name: build_runner + sha256: "10c6bcdbf9d049a0b666702cf1cee4ddfdc38f02a19d35ae392863b47519848b" + url: "https://pub.dev" + source: hosted + version: "2.4.6" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 + url: "https://pub.dev" + source: hosted + version: "7.2.11" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: "723b4021e903217dfc445ec4cf5b42e27975aece1fc4ebbc1ca6329c2d9fb54e" + url: "https://pub.dev" + source: hosted + version: "8.7.0" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: "1be9be30396d7e4c0db42c35ea6ccd7cc6a1e19916b5dc64d6ac216b5544d677" + url: "https://pub.dev" + source: hosted + version: "4.7.0" + collection: + dependency: transitive + description: + name: collection + sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 + url: "https://pub.dev" + source: hosted + version: "1.17.2" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: "445db18de832dba8d851e287aff8ccf169bed30d2e94243cb54c7d2f1ed2142c" + url: "https://pub.dev" + source: hosted + version: "0.3.3+6" + crypto: + dependency: transitive + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + dio: + dependency: "direct main" + description: + name: dio + sha256: "417e2a6f9d83ab396ec38ff4ea5da6c254da71e4db765ad737a42af6930140b7" + url: "https://pub.dev" + source: hosted + version: "5.3.3" + easy_image_viewer: + dependency: "direct main" + description: + name: easy_image_viewer + sha256: "8d11a4630e9beb7aacf043c98da2dd4b3bc3b47aa4073d2016ba696376161272" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + ffi: + dependency: transitive + description: + name: ffi + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + file: + dependency: transitive + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + file_selector_linux: + dependency: transitive + description: + name: file_selector_linux + sha256: "045d372bf19b02aeb69cacf8b4009555fb5f6f0b7ad8016e5f46dd1387ddd492" + url: "https://pub.dev" + source: hosted + version: "0.9.2+1" + file_selector_macos: + dependency: transitive + description: + name: file_selector_macos + sha256: b15c3da8bd4908b9918111fa486903f5808e388b8d1c559949f584725a6594d6 + url: "https://pub.dev" + source: hosted + version: "0.9.3+3" + file_selector_platform_interface: + dependency: transitive + description: + name: file_selector_platform_interface + sha256: "0aa47a725c346825a2bd396343ce63ac00bda6eff2fbc43eabe99737dede8262" + url: "https://pub.dev" + source: hosted + version: "2.6.1" + file_selector_windows: + dependency: transitive + description: + name: file_selector_windows + sha256: d3547240c20cabf205c7c7f01a50ecdbc413755814d6677f3cb366f04abcead0 + url: "https://pub.dev" + source: hosted + version: "0.9.3+1" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_dotenv: + dependency: "direct main" + description: + name: flutter_dotenv + sha256: "9357883bdd153ab78cbf9ffa07656e336b8bbb2b5a3ca596b0b27e119f7c7d77" + url: "https://pub.dev" + source: hosted + version: "5.1.0" + flutter_easyloading: + dependency: "direct main" + description: + name: flutter_easyloading + sha256: ba21a3c883544e582f9cc455a4a0907556714e1e9cf0eababfcb600da191d17c + url: "https://pub.dev" + source: hosted + version: "3.0.5" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" + source: hosted + version: "2.0.3" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da + url: "https://pub.dev" + source: hosted + version: "2.0.17" + flutter_spinkit: + dependency: transitive + description: + name: flutter_spinkit + sha256: b39c753e909d4796906c5696a14daf33639a76e017136c8d82bf3e620ce5bb8e + url: "https://pub.dev" + source: hosted + version: "5.2.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + freezed_annotation: + dependency: transitive + description: + name: freezed_annotation + sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d + url: "https://pub.dev" + source: hosted + version: "2.4.1" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + get: + dependency: transitive + description: + name: get + sha256: "2ba20a47c8f1f233bed775ba2dd0d3ac97b4cf32fc17731b3dfc672b06b0e92a" + url: "https://pub.dev" + source: hosted + version: "4.6.5" + get_it: + dependency: transitive + description: + name: get_it + sha256: f79870884de16d689cf9a7d15eedf31ed61d750e813c538a6efb92660fea83c3 + url: "https://pub.dev" + source: hosted + version: "7.6.4" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + graphs: + dependency: transitive + description: + name: graphs + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + http: + dependency: transitive + description: + name: http + sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: "direct main" + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + image_picker: + dependency: "direct main" + description: + name: image_picker + sha256: b6951e25b795d053a6ba03af5f710069c99349de9341af95155d52665cb4607c + url: "https://pub.dev" + source: hosted + version: "0.8.9" + image_picker_android: + dependency: transitive + description: + name: image_picker_android + sha256: d6a6e78821086b0b737009b09363018309bbc6de3fd88cc5c26bc2bb44a4957f + url: "https://pub.dev" + source: hosted + version: "0.8.8+2" + image_picker_for_web: + dependency: transitive + description: + name: image_picker_for_web + sha256: "869fe8a64771b7afbc99fc433a5f7be2fea4d1cb3d7c11a48b6b579eb9c797f0" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + image_picker_ios: + dependency: transitive + description: + name: image_picker_ios + sha256: "76ec722aeea419d03aa915c2c96bf5b47214b053899088c9abb4086ceecf97a7" + url: "https://pub.dev" + source: hosted + version: "0.8.8+4" + image_picker_linux: + dependency: transitive + description: + name: image_picker_linux + sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + image_picker_macos: + dependency: transitive + description: + name: image_picker_macos + sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + image_picker_platform_interface: + dependency: transitive + description: + name: image_picker_platform_interface + sha256: ed9b00e63977c93b0d2d2b343685bed9c324534ba5abafbb3dfbd6a780b1b514 + url: "https://pub.dev" + source: hosted + version: "2.9.1" + image_picker_windows: + dependency: transitive + description: + name: image_picker_windows + sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" + url: "https://pub.dev" + source: hosted + version: "0.2.1+1" + intl: + dependency: "direct main" + description: + name: intl + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" + source: hosted + version: "0.18.1" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + logger: + dependency: transitive + description: + name: logger + sha256: "7ad7215c15420a102ec687bb320a7312afd449bac63bfb1c60d9787c27b9767f" + url: "https://pub.dev" + source: hosted + version: "1.4.0" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" + source: hosted + version: "0.12.16" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + meta: + dependency: transitive + description: + name: meta + sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + mime: + dependency: transitive + description: + name: mime + sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e + url: "https://pub.dev" + source: hosted + version: "1.0.4" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" + source: hosted + version: "1.8.3" + path_provider: + dependency: "direct main" + description: + name: path_provider + sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d" + url: "https://pub.dev" + source: hosted + version: "2.3.1" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + platform: + dependency: transitive + description: + name: platform + sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" + url: "https://pub.dev" + source: hosted + version: "3.1.3" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: da3fdfeccc4d4ff2da8f8c556704c08f912542c5fb3cf2233ed75372384a034d + url: "https://pub.dev" + source: hosted + version: "2.1.6" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + provider: + dependency: transitive + description: + name: provider + sha256: cdbe7530b12ecd9eb455bdaa2fcb8d4dad22e80b8afb4798b41479d5ce26847f + url: "https://pub.dev" + source: hosted + version: "6.0.5" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + recase: + dependency: transitive + description: + name: recase + sha256: e4eb4ec2dcdee52dcf99cb4ceabaffc631d7424ee55e56f280bc039737f89213 + url: "https://pub.dev" + source: hosted + version: "4.1.0" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7" + url: "https://pub.dev" + source: hosted + version: "2.3.4" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a + url: "https://pub.dev" + source: hosted + version: "2.3.1" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf + url: "https://pub.dev" + source: hosted + version: "2.2.1" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_gen: + dependency: transitive + description: + name: source_gen + sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + stacked: + dependency: "direct main" + description: + name: stacked + sha256: "9b314261e675b6d153caee14c3e8fc4590e8a8f3fdd0f418d545c5963372a46f" + url: "https://pub.dev" + source: hosted + version: "3.4.1+1" + stacked_generator: + dependency: "direct dev" + description: + name: stacked_generator + sha256: c141baf56cb7168dfde142d3578118c7bf914be9fb62bc8593344e97894ac8f9 + url: "https://pub.dev" + source: hosted + version: "1.5.1" + stacked_services: + dependency: "direct main" + description: + name: stacked_services + sha256: df2780a026fd1d3671aceaa9d7cae9e8d15d577c71ef29d7dd6f79a0a289e77e + url: "https://pub.dev" + source: hosted + version: "0.9.12" + stacked_shared: + dependency: transitive + description: + name: stacked_shared + sha256: e6bc2921eb59b7c741c551fbb4060f22a543ea9c2d9351315fb58aa055b535f3 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + stylish_bottom_bar: + dependency: "direct main" + description: + name: stylish_bottom_bar + sha256: "54970e4753b4273239b6dea0d1175c56beabcf39b5c65df4cbf86f1b86568d2b" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + timing: + dependency: transitive + description: + name: timing + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + universal_io: + dependency: transitive + description: + name: universal_io + sha256: "1722b2dcc462b4b2f3ee7d188dad008b6eb4c40bbd03a3de451d82c78bba9aad" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + validatorless: + dependency: "direct main" + description: + name: validatorless + sha256: ddb46df636114b3322d289489164cac309767b157191ba43c7ad49b28c2b57c7 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b + url: "https://pub.dev" + source: hosted + version: "2.4.0" + win32: + dependency: transitive + description: + name: win32 + sha256: "350a11abd2d1d97e0cc7a28a81b781c08002aa2864d9e3f192ca0ffa18b06ed3" + url: "https://pub.dev" + source: hosted + version: "5.0.9" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + yaml: + dependency: transitive + description: + name: yaml + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.1.0-163.1.beta <4.0.0" + flutter: ">=3.7.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..02eaa20 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,105 @@ +name: cek_suara_caleg +description: A new Flutter project. +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: '>=3.1.0-163.1.beta <4.0.0' + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.2 + stacked: ^3.0.1 + stacked_services: ^0.9.8 + flutter_dotenv: + image_picker: ^0.8.5 + path_provider: ^2.0.9 + dio: + flutter_easyloading: + stylish_bottom_bar: + validatorless: ^1.2.3 + http_parser: + intl: + shared_preferences: + easy_image_viewer: + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^2.0.0 + build_runner: + stacked_generator: + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + assets: + - .env + - assets/logo.png + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..22d27e6 --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:cek_suara_caleg/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +}