├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── SECURITY.md ├── analysis_options.yaml ├── android ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── nicetry │ │ │ │ └── attendancesystem │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── attendancesystem_icon.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── asset ├── app │ └── env.example ├── fonts │ ├── Montserrat-Black.ttf │ ├── Montserrat-BlackItalic.ttf │ ├── Montserrat-Bold.ttf │ ├── Montserrat-BoldItalic.ttf │ ├── Montserrat-ExtraBold.ttf │ ├── Montserrat-ExtraBoldItalic.ttf │ ├── Montserrat-ExtraLight.ttf │ ├── Montserrat-ExtraLightItalic.ttf │ ├── Montserrat-Italic.ttf │ ├── Montserrat-Light.ttf │ ├── Montserrat-LightItalic.ttf │ ├── Montserrat-Medium.ttf │ ├── Montserrat-MediumItalic.ttf │ ├── Montserrat-Regular.ttf │ ├── Montserrat-SemiBold.ttf │ ├── Montserrat-SemiBoldItalic.ttf │ ├── Montserrat-Thin.ttf │ └── Montserrat-ThinItalic.ttf ├── image │ └── attendancesystem_icon.png ├── lang │ ├── en-US.json │ └── tr-TR.json ├── lottie │ ├── moon.json │ └── sunny.json └── svg │ ├── class.svg │ ├── face.svg │ ├── login.svg │ └── teacher.svg ├── lib ├── core │ ├── base │ │ ├── model │ │ │ └── base_model.dart │ │ ├── view │ │ │ └── base_view.dart │ │ └── viewmodel │ │ │ └── base_view_model.dart │ ├── components │ │ ├── button │ │ │ ├── icon_image_button.dart │ │ │ ├── icon_normal_button.dart │ │ │ ├── icon_text_button.dart │ │ │ ├── normal_button.dart │ │ │ └── title_text_button.dart │ │ ├── card │ │ │ └── not_found_card.dart │ │ ├── column │ │ │ └── form_column.dart │ │ ├── decoration │ │ │ ├── bounding_custom_painter.dart │ │ │ └── circle_decoration.dart │ │ ├── dialog │ │ │ └── custom_alert_dialog.dart │ │ ├── listview │ │ │ └── indicator_list_view.dart │ │ └── text │ │ │ ├── auto_locale_text.dart │ │ │ └── locale_text.dart │ ├── constants │ │ ├── app │ │ │ └── app_constants.dart │ │ ├── enums │ │ │ ├── app_theme_enum.dart │ │ │ ├── http_request_enum.dart │ │ │ └── preferences_keys_enum.dart │ │ ├── image │ │ │ └── image_constants.dart │ │ ├── navigation │ │ │ └── navigation_constants.dart │ │ └── regex │ │ │ └── regex_constants.dart │ ├── extension │ │ ├── context_extension.dart │ │ ├── string_extension.dart │ │ └── widget_extension.dart │ └── init │ │ ├── cache │ │ └── locale_manager.dart │ │ ├── lang │ │ ├── language_manager.dart │ │ └── locale_keys.g.dart │ │ ├── navigation │ │ ├── INavigationService.dart │ │ ├── navigation_route.dart │ │ └── navigation_service.dart │ │ ├── network │ │ └── vexana_manager.dart │ │ ├── notifier │ │ ├── provider_list.dart │ │ └── theme_notifier.dart │ │ └── theme │ │ ├── app_theme.dart │ │ ├── app_theme_light.dart │ │ └── light │ │ ├── color_scheme_light.dart │ │ ├── light_theme_interface.dart │ │ ├── padding_insets.dart │ │ └── text_theme_light.dart ├── main.dart ├── product │ └── enum │ │ └── lottie_path_enum.dart └── view │ ├── _product │ ├── _constants │ │ └── svg_image_paths.dart │ ├── _enum │ │ └── network_route_enum.dart │ ├── _model │ │ ├── basic_error_model.dart │ │ ├── basic_error_model.g.dart │ │ └── user_type_model.dart │ ├── _utility │ │ ├── decoration_helper.dart │ │ └── service_helper.dart │ └── _widgets │ │ ├── card │ │ ├── course_detail_card.dart │ │ ├── course_list_card.dart │ │ ├── student_card.dart │ │ └── student_manage_attendance_card.dart │ │ ├── dialog │ │ ├── confirm_alert_dialog.dart │ │ ├── resend_alert_dialog.dart │ │ ├── upload_image_dialog.dart │ │ └── verify_dialog.dart │ │ ├── form │ │ └── pincode_text_field.dart │ │ └── listview │ │ └── onboard_indicator.dart │ ├── authenticate │ ├── forgot_password │ │ ├── model │ │ │ ├── forgot_password_model.dart │ │ │ └── forgot_password_model.g.dart │ │ ├── service │ │ │ ├── IForgotPasswordService.dart │ │ │ └── forgot_password_service.dart │ │ ├── view │ │ │ ├── forgot_password_view.dart │ │ │ └── subview │ │ │ │ ├── change_password_view.dart │ │ │ │ └── confirm_otp_view.dart │ │ └── viewmodel │ │ │ ├── forgot_password_view_model.dart │ │ │ ├── forgot_password_view_model.g.dart │ │ │ └── subviewmodel │ │ │ ├── change_password_view_model.dart │ │ │ ├── change_password_view_model.g.dart │ │ │ ├── confirm_otp_view_model.dart │ │ │ └── confirm_otp_view_model.g.dart │ ├── login │ │ ├── model │ │ │ ├── login_model.dart │ │ │ ├── login_model.g.dart │ │ │ ├── login_response_model.dart │ │ │ └── login_response_model.g.dart │ │ ├── service │ │ │ ├── ILoginService.dart │ │ │ └── login_service.dart │ │ ├── view │ │ │ └── login_view.dart │ │ └── viewmodel │ │ │ ├── login_view_model.dart │ │ │ └── login_view_model.g.dart │ ├── onboard │ │ ├── model │ │ │ └── onboard_model.dart │ │ ├── view │ │ │ └── onboard_view.dart │ │ └── viewmodel │ │ │ ├── onboard_view_model.dart │ │ │ └── onboard_view_model.g.dart │ └── splash │ │ ├── view │ │ └── splash_view.dart │ │ └── viewmodel │ │ ├── device_and_cache.dart │ │ ├── splash_view_model.dart │ │ └── splash_view_model.g.dart │ ├── home │ ├── attendance │ │ ├── model │ │ │ ├── manage_attendance_model.dart │ │ │ ├── manage_attendance_model.g.dart │ │ │ └── submodel │ │ │ │ ├── students_array_model.dart │ │ │ │ └── students_array_model.g.dart │ │ └── view │ │ │ └── attendance_view.dart │ ├── course │ │ ├── model │ │ │ └── submodel │ │ │ │ ├── attendance_status │ │ │ │ ├── attendance_status_model.dart │ │ │ │ └── attendance_status_model.g.dart │ │ │ │ ├── course │ │ │ │ ├── course_model.dart │ │ │ │ └── course_model.g.dart │ │ │ │ ├── courselist_model.dart │ │ │ │ ├── courselist_model.g.dart │ │ │ │ ├── detail │ │ │ │ ├── detail_model.dart │ │ │ │ └── detail_model.g.dart │ │ │ │ ├── image │ │ │ │ ├── boundingBox │ │ │ │ │ ├── bounding_box_model.dart │ │ │ │ │ └── bounding_box_model.g.dart │ │ │ │ ├── byte │ │ │ │ │ ├── image_byte_model.dart │ │ │ │ │ └── image_byte_model.g.dart │ │ │ │ ├── student_image_model.dart │ │ │ │ └── student_image_model.g.dart │ │ │ │ ├── students │ │ │ │ ├── student_model.dart │ │ │ │ └── student_model.g.dart │ │ │ │ └── teacher │ │ │ │ ├── teacher_model.dart │ │ │ │ └── teacher_model.g.dart │ │ ├── service │ │ │ ├── ICourseService.dart │ │ │ └── course_service.dart │ │ ├── view │ │ │ ├── course_view.dart │ │ │ └── subview │ │ │ │ ├── course_detail_settings_view.dart │ │ │ │ ├── course_detail_view.dart │ │ │ │ └── course_schedule_view.dart │ │ └── viewmodel │ │ │ ├── course_view_model.dart │ │ │ ├── course_view_model.g.dart │ │ │ └── subviewmodel │ │ │ ├── course_detail_view_model.dart │ │ │ └── course_detail_view_model.g.dart │ └── profile │ │ ├── model │ │ ├── profile_response_model.dart │ │ ├── profile_response_model.g.dart │ │ ├── student_profile_response_model.dart │ │ ├── student_profile_response_model.g.dart │ │ ├── teacher_profile_response_model.dart │ │ └── teacher_profile_response_model.g.dart │ │ ├── service │ │ ├── IProfileService.dart │ │ └── profile_service.dart │ │ ├── view │ │ └── profile_view.dart │ │ └── viewmodel │ │ ├── profile_view_model.dart │ │ └── profile_view_model.g.dart │ ├── menu │ ├── model │ │ └── menu_model.dart │ ├── view │ │ └── menu_view.dart │ └── viewmodel │ │ ├── menu_view_model.dart │ │ └── menu_view_model.g.dart │ └── settings │ ├── view │ └── settings_view.dart │ └── viewmodel │ ├── settings_view_model.dart │ └── settings_view_model.g.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── changepassword.jpg ├── confirmotp.jpg ├── course_attendance.png ├── course_date.png ├── course_students.png ├── courseview.jpg ├── createcourse.jpg ├── darkmode.jpg ├── forgotpassword.jpg ├── language.jpg ├── menu.jpg ├── onboard.jpg ├── settings.jpg ├── splash_screen.jpg ├── student_enroll.jpg ├── student_joincourse.jpg ├── student_profile.jpg ├── student_signin.jpg ├── student_signup.jpg ├── teacher_3dot.jpg ├── teacher_Addschedule.jpg ├── teacher_profile.jpg └── teacher_signup.jpg ├── scripts ├── android_build.sh ├── build.sh └── lang.sh └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/SECURITY.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/nicetry/attendancesystem/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/java/com/nicetry/attendancesystem/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/attendancesystem_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/drawable/attendancesystem_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /asset/app/env.example: -------------------------------------------------------------------------------- 1 | APP_API_SITE=https://example.com 2 | -------------------------------------------------------------------------------- /asset/fonts/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-Black.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /asset/fonts/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/fonts/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /asset/image/attendancesystem_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/image/attendancesystem_icon.png -------------------------------------------------------------------------------- /asset/lang/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/lang/en-US.json -------------------------------------------------------------------------------- /asset/lang/tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/lang/tr-TR.json -------------------------------------------------------------------------------- /asset/lottie/moon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/lottie/moon.json -------------------------------------------------------------------------------- /asset/lottie/sunny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/lottie/sunny.json -------------------------------------------------------------------------------- /asset/svg/class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/svg/class.svg -------------------------------------------------------------------------------- /asset/svg/face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/svg/face.svg -------------------------------------------------------------------------------- /asset/svg/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/svg/login.svg -------------------------------------------------------------------------------- /asset/svg/teacher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/asset/svg/teacher.svg -------------------------------------------------------------------------------- /lib/core/base/model/base_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/base/model/base_model.dart -------------------------------------------------------------------------------- /lib/core/base/view/base_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/base/view/base_view.dart -------------------------------------------------------------------------------- /lib/core/base/viewmodel/base_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/base/viewmodel/base_view_model.dart -------------------------------------------------------------------------------- /lib/core/components/button/icon_image_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/button/icon_image_button.dart -------------------------------------------------------------------------------- /lib/core/components/button/icon_normal_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/button/icon_normal_button.dart -------------------------------------------------------------------------------- /lib/core/components/button/icon_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/button/icon_text_button.dart -------------------------------------------------------------------------------- /lib/core/components/button/normal_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/button/normal_button.dart -------------------------------------------------------------------------------- /lib/core/components/button/title_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/button/title_text_button.dart -------------------------------------------------------------------------------- /lib/core/components/card/not_found_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/card/not_found_card.dart -------------------------------------------------------------------------------- /lib/core/components/column/form_column.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/column/form_column.dart -------------------------------------------------------------------------------- /lib/core/components/decoration/bounding_custom_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/decoration/bounding_custom_painter.dart -------------------------------------------------------------------------------- /lib/core/components/decoration/circle_decoration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/decoration/circle_decoration.dart -------------------------------------------------------------------------------- /lib/core/components/dialog/custom_alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/dialog/custom_alert_dialog.dart -------------------------------------------------------------------------------- /lib/core/components/listview/indicator_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/listview/indicator_list_view.dart -------------------------------------------------------------------------------- /lib/core/components/text/auto_locale_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/text/auto_locale_text.dart -------------------------------------------------------------------------------- /lib/core/components/text/locale_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/components/text/locale_text.dart -------------------------------------------------------------------------------- /lib/core/constants/app/app_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/constants/app/app_constants.dart -------------------------------------------------------------------------------- /lib/core/constants/enums/app_theme_enum.dart: -------------------------------------------------------------------------------- 1 | // ignore_for_file: constant_identifier_names 2 | 3 | enum AppThemes { LIGHT, DARK } 4 | -------------------------------------------------------------------------------- /lib/core/constants/enums/http_request_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/constants/enums/http_request_enum.dart -------------------------------------------------------------------------------- /lib/core/constants/enums/preferences_keys_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/constants/enums/preferences_keys_enum.dart -------------------------------------------------------------------------------- /lib/core/constants/image/image_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/constants/image/image_constants.dart -------------------------------------------------------------------------------- /lib/core/constants/navigation/navigation_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/constants/navigation/navigation_constants.dart -------------------------------------------------------------------------------- /lib/core/constants/regex/regex_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/constants/regex/regex_constants.dart -------------------------------------------------------------------------------- /lib/core/extension/context_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/extension/context_extension.dart -------------------------------------------------------------------------------- /lib/core/extension/string_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/extension/string_extension.dart -------------------------------------------------------------------------------- /lib/core/extension/widget_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/extension/widget_extension.dart -------------------------------------------------------------------------------- /lib/core/init/cache/locale_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/cache/locale_manager.dart -------------------------------------------------------------------------------- /lib/core/init/lang/language_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/lang/language_manager.dart -------------------------------------------------------------------------------- /lib/core/init/lang/locale_keys.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/lang/locale_keys.g.dart -------------------------------------------------------------------------------- /lib/core/init/navigation/INavigationService.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/navigation/INavigationService.dart -------------------------------------------------------------------------------- /lib/core/init/navigation/navigation_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/navigation/navigation_route.dart -------------------------------------------------------------------------------- /lib/core/init/navigation/navigation_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/navigation/navigation_service.dart -------------------------------------------------------------------------------- /lib/core/init/network/vexana_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/network/vexana_manager.dart -------------------------------------------------------------------------------- /lib/core/init/notifier/provider_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/notifier/provider_list.dart -------------------------------------------------------------------------------- /lib/core/init/notifier/theme_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/notifier/theme_notifier.dart -------------------------------------------------------------------------------- /lib/core/init/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/core/init/theme/app_theme_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/theme/app_theme_light.dart -------------------------------------------------------------------------------- /lib/core/init/theme/light/color_scheme_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/theme/light/color_scheme_light.dart -------------------------------------------------------------------------------- /lib/core/init/theme/light/light_theme_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/theme/light/light_theme_interface.dart -------------------------------------------------------------------------------- /lib/core/init/theme/light/padding_insets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/theme/light/padding_insets.dart -------------------------------------------------------------------------------- /lib/core/init/theme/light/text_theme_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/core/init/theme/light/text_theme_light.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/product/enum/lottie_path_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/product/enum/lottie_path_enum.dart -------------------------------------------------------------------------------- /lib/view/_product/_constants/svg_image_paths.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_constants/svg_image_paths.dart -------------------------------------------------------------------------------- /lib/view/_product/_enum/network_route_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_enum/network_route_enum.dart -------------------------------------------------------------------------------- /lib/view/_product/_model/basic_error_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_model/basic_error_model.dart -------------------------------------------------------------------------------- /lib/view/_product/_model/basic_error_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_model/basic_error_model.g.dart -------------------------------------------------------------------------------- /lib/view/_product/_model/user_type_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_model/user_type_model.dart -------------------------------------------------------------------------------- /lib/view/_product/_utility/decoration_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_utility/decoration_helper.dart -------------------------------------------------------------------------------- /lib/view/_product/_utility/service_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_utility/service_helper.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/card/course_detail_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/card/course_detail_card.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/card/course_list_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/card/course_list_card.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/card/student_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/card/student_card.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/card/student_manage_attendance_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/card/student_manage_attendance_card.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/dialog/confirm_alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/dialog/confirm_alert_dialog.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/dialog/resend_alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/dialog/resend_alert_dialog.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/dialog/upload_image_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/dialog/upload_image_dialog.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/dialog/verify_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/dialog/verify_dialog.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/form/pincode_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/form/pincode_text_field.dart -------------------------------------------------------------------------------- /lib/view/_product/_widgets/listview/onboard_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/_product/_widgets/listview/onboard_indicator.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/model/forgot_password_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/model/forgot_password_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/model/forgot_password_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/model/forgot_password_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/service/IForgotPasswordService.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/service/IForgotPasswordService.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/service/forgot_password_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/service/forgot_password_service.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/view/forgot_password_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/view/forgot_password_view.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/view/subview/change_password_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/view/subview/change_password_view.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/view/subview/confirm_otp_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/view/subview/confirm_otp_view.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/viewmodel/forgot_password_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/viewmodel/forgot_password_view_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/viewmodel/forgot_password_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/viewmodel/forgot_password_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/viewmodel/subviewmodel/change_password_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/viewmodel/subviewmodel/change_password_view_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/viewmodel/subviewmodel/change_password_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/viewmodel/subviewmodel/change_password_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/viewmodel/subviewmodel/confirm_otp_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/viewmodel/subviewmodel/confirm_otp_view_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/forgot_password/viewmodel/subviewmodel/confirm_otp_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/forgot_password/viewmodel/subviewmodel/confirm_otp_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/model/login_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/model/login_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/model/login_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/model/login_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/model/login_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/model/login_response_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/model/login_response_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/model/login_response_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/service/ILoginService.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/service/ILoginService.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/service/login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/service/login_service.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/view/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/view/login_view.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/viewmodel/login_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/viewmodel/login_view_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/login/viewmodel/login_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/login/viewmodel/login_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/onboard/model/onboard_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/onboard/model/onboard_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/onboard/view/onboard_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/onboard/view/onboard_view.dart -------------------------------------------------------------------------------- /lib/view/authenticate/onboard/viewmodel/onboard_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/onboard/viewmodel/onboard_view_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/onboard/viewmodel/onboard_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/onboard/viewmodel/onboard_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/authenticate/splash/view/splash_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/splash/view/splash_view.dart -------------------------------------------------------------------------------- /lib/view/authenticate/splash/viewmodel/device_and_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/splash/viewmodel/device_and_cache.dart -------------------------------------------------------------------------------- /lib/view/authenticate/splash/viewmodel/splash_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/splash/viewmodel/splash_view_model.dart -------------------------------------------------------------------------------- /lib/view/authenticate/splash/viewmodel/splash_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/authenticate/splash/viewmodel/splash_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/attendance/model/manage_attendance_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/attendance/model/manage_attendance_model.dart -------------------------------------------------------------------------------- /lib/view/home/attendance/model/manage_attendance_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/attendance/model/manage_attendance_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/attendance/model/submodel/students_array_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/attendance/model/submodel/students_array_model.dart -------------------------------------------------------------------------------- /lib/view/home/attendance/model/submodel/students_array_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/attendance/model/submodel/students_array_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/attendance/view/attendance_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/attendance/view/attendance_view.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/attendance_status/attendance_status_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/attendance_status/attendance_status_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/attendance_status/attendance_status_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/attendance_status/attendance_status_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/course/course_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/course/course_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/course/course_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/course/course_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/courselist_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/courselist_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/courselist_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/courselist_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/detail/detail_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/detail/detail_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/detail/detail_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/detail/detail_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/image/boundingBox/bounding_box_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/image/boundingBox/bounding_box_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/image/boundingBox/bounding_box_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/image/boundingBox/bounding_box_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/image/byte/image_byte_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/image/byte/image_byte_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/image/byte/image_byte_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/image/byte/image_byte_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/image/student_image_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/image/student_image_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/image/student_image_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/image/student_image_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/students/student_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/students/student_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/students/student_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/students/student_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/teacher/teacher_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/teacher/teacher_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/model/submodel/teacher/teacher_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/model/submodel/teacher/teacher_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/service/ICourseService.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/service/ICourseService.dart -------------------------------------------------------------------------------- /lib/view/home/course/service/course_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/service/course_service.dart -------------------------------------------------------------------------------- /lib/view/home/course/view/course_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/view/course_view.dart -------------------------------------------------------------------------------- /lib/view/home/course/view/subview/course_detail_settings_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/view/subview/course_detail_settings_view.dart -------------------------------------------------------------------------------- /lib/view/home/course/view/subview/course_detail_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/view/subview/course_detail_view.dart -------------------------------------------------------------------------------- /lib/view/home/course/view/subview/course_schedule_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/view/subview/course_schedule_view.dart -------------------------------------------------------------------------------- /lib/view/home/course/viewmodel/course_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/viewmodel/course_view_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/viewmodel/course_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/viewmodel/course_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/course/viewmodel/subviewmodel/course_detail_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/viewmodel/subviewmodel/course_detail_view_model.dart -------------------------------------------------------------------------------- /lib/view/home/course/viewmodel/subviewmodel/course_detail_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/course/viewmodel/subviewmodel/course_detail_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/profile/model/profile_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/model/profile_response_model.dart -------------------------------------------------------------------------------- /lib/view/home/profile/model/profile_response_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/model/profile_response_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/profile/model/student_profile_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/model/student_profile_response_model.dart -------------------------------------------------------------------------------- /lib/view/home/profile/model/student_profile_response_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/model/student_profile_response_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/profile/model/teacher_profile_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/model/teacher_profile_response_model.dart -------------------------------------------------------------------------------- /lib/view/home/profile/model/teacher_profile_response_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/model/teacher_profile_response_model.g.dart -------------------------------------------------------------------------------- /lib/view/home/profile/service/IProfileService.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/service/IProfileService.dart -------------------------------------------------------------------------------- /lib/view/home/profile/service/profile_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/service/profile_service.dart -------------------------------------------------------------------------------- /lib/view/home/profile/view/profile_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/view/profile_view.dart -------------------------------------------------------------------------------- /lib/view/home/profile/viewmodel/profile_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/viewmodel/profile_view_model.dart -------------------------------------------------------------------------------- /lib/view/home/profile/viewmodel/profile_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/home/profile/viewmodel/profile_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/menu/model/menu_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/menu/model/menu_model.dart -------------------------------------------------------------------------------- /lib/view/menu/view/menu_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/menu/view/menu_view.dart -------------------------------------------------------------------------------- /lib/view/menu/viewmodel/menu_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/menu/viewmodel/menu_view_model.dart -------------------------------------------------------------------------------- /lib/view/menu/viewmodel/menu_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/menu/viewmodel/menu_view_model.g.dart -------------------------------------------------------------------------------- /lib/view/settings/view/settings_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/settings/view/settings_view.dart -------------------------------------------------------------------------------- /lib/view/settings/viewmodel/settings_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/settings/viewmodel/settings_view_model.dart -------------------------------------------------------------------------------- /lib/view/settings/viewmodel/settings_view_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/lib/view/settings/viewmodel/settings_view_model.g.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/changepassword.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/changepassword.jpg -------------------------------------------------------------------------------- /screenshots/confirmotp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/confirmotp.jpg -------------------------------------------------------------------------------- /screenshots/course_attendance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/course_attendance.png -------------------------------------------------------------------------------- /screenshots/course_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/course_date.png -------------------------------------------------------------------------------- /screenshots/course_students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/course_students.png -------------------------------------------------------------------------------- /screenshots/courseview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/courseview.jpg -------------------------------------------------------------------------------- /screenshots/createcourse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/createcourse.jpg -------------------------------------------------------------------------------- /screenshots/darkmode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/darkmode.jpg -------------------------------------------------------------------------------- /screenshots/forgotpassword.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/forgotpassword.jpg -------------------------------------------------------------------------------- /screenshots/language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/language.jpg -------------------------------------------------------------------------------- /screenshots/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/menu.jpg -------------------------------------------------------------------------------- /screenshots/onboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/onboard.jpg -------------------------------------------------------------------------------- /screenshots/settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/settings.jpg -------------------------------------------------------------------------------- /screenshots/splash_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/splash_screen.jpg -------------------------------------------------------------------------------- /screenshots/student_enroll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/student_enroll.jpg -------------------------------------------------------------------------------- /screenshots/student_joincourse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/student_joincourse.jpg -------------------------------------------------------------------------------- /screenshots/student_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/student_profile.jpg -------------------------------------------------------------------------------- /screenshots/student_signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/student_signin.jpg -------------------------------------------------------------------------------- /screenshots/student_signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/student_signup.jpg -------------------------------------------------------------------------------- /screenshots/teacher_3dot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/teacher_3dot.jpg -------------------------------------------------------------------------------- /screenshots/teacher_Addschedule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/teacher_Addschedule.jpg -------------------------------------------------------------------------------- /screenshots/teacher_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/teacher_profile.jpg -------------------------------------------------------------------------------- /screenshots/teacher_signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/screenshots/teacher_signup.jpg -------------------------------------------------------------------------------- /scripts/android_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/scripts/android_build.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/scripts/lang.sh -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merthankavak/attendancesystem_flutter/HEAD/test/widget_test.dart --------------------------------------------------------------------------------