gitextract_q81wuefv/ ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android/ │ ├── .gitignore │ ├── app/ │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ ├── debug/ │ │ │ └── AndroidManifest.xml │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin/ │ │ │ │ └── com/ │ │ │ │ └── banuacoders/ │ │ │ │ └── siap/ │ │ │ │ └── MainActivity.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ ├── gradient_background.xml │ │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ └── ic_launcher.xml │ │ │ └── values/ │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile/ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── settings.gradle │ └── settings_aar.gradle ├── assets/ │ └── flare/ │ ├── documents.flr │ ├── empty.flr │ ├── failure.flr │ ├── not_found.flr │ ├── qrcode.flr │ └── success.flr ├── ios/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.imageset/ │ │ │ ├── Contents.json │ │ │ └── README.md │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ └── Runner.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── lib/ │ ├── main.dart │ ├── models/ │ │ ├── absent_permission.dart │ │ ├── employee.dart │ │ ├── holiday.dart │ │ ├── location.dart │ │ ├── notification.dart │ │ ├── outstation.dart │ │ ├── paid_leave.dart │ │ ├── presence.dart │ │ ├── report/ │ │ │ ├── absent_report.dart │ │ │ ├── daily.dart │ │ │ ├── monthly.dart │ │ │ └── yearly.dart │ │ └── user.dart │ ├── network/ │ │ ├── api.dart │ │ └── api_service.dart │ ├── repositories/ │ │ └── data_repository.dart │ ├── screen/ │ │ ├── application_screen.dart │ │ ├── bottom_nav_screen.dart │ │ ├── change_absent_permission_photo_screen.dart │ │ ├── change_outstation_photo_screen.dart │ │ ├── change_paid_leave_photo_screen.dart │ │ ├── change_pass_screen.dart │ │ ├── create_notification_screen.dart │ │ ├── create_outstation_screen.dart │ │ ├── create_paid_leave_screen.dart │ │ ├── create_permission_screen.dart │ │ ├── employee_attendance_screen.dart │ │ ├── employee_list_screen.dart │ │ ├── employee_outstation.dart │ │ ├── employee_paid_leave_screen.dart │ │ ├── employee_permission.dart │ │ ├── forgot_pass_screen.dart │ │ ├── home_screen.dart │ │ ├── image_detail_screen.dart │ │ ├── login_screen.dart │ │ ├── notification_list_screen.dart │ │ ├── on_boarding_screen.dart │ │ ├── outstation_list_screen.dart │ │ ├── paid_leave_list_screen.dart │ │ ├── permission_list_screen.dart │ │ ├── presence_screen.dart │ │ ├── regulation_screen.dart │ │ ├── report_screen.dart │ │ └── splash_screen.dart │ ├── utils/ │ │ ├── app_const.dart │ │ ├── extensions.dart │ │ ├── file_util.dart │ │ └── view_util.dart │ └── widgets/ │ ├── employee_presence_card_widget.dart │ ├── employee_proposal_info_widget.dart │ ├── employee_proposal_widget.dart │ ├── image_placeholder_widget.dart │ ├── next_presence_empty_card_widget.dart │ ├── statistics_card_widget.dart │ └── user_info_card_widget.dart ├── privacy-policy.md ├── pubspec.yaml └── test/ └── widget_test.dart