├── .all-contributorsrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── documentation.yaml │ └── feature.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── CI.yml │ ├── auto-comment.yml │ ├── codeql.yml │ ├── dart.yml │ ├── issue-assign.yml │ ├── issue.yml │ ├── lint.yml │ └── release.yml ├── .gitignore ├── .metadata ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── WikiPagesREADME.md ├── android ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── app │ │ │ │ └── FlutterMultiDexApplication.java │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── class_manager │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── launch_background.xml │ │ │ └── launch_image.png │ │ │ ├── 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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── settings_aar.gradle ├── assets ├── icons │ ├── grad_cap.svg │ ├── homework.svg │ ├── house.svg │ ├── icon.png │ ├── read_book.svg │ ├── settings.svg │ ├── test.svg │ └── user.svg └── images │ ├── fbook.png │ ├── google.png │ ├── phone.png │ ├── profile_pic.jpg │ ├── slider1.png │ ├── slider2.png │ └── slider3.png ├── design-assets ├── Color scheme │ └── color_design.md ├── Figma (Adding more graphics) │ ├── Frame 1.png │ ├── Frame 2.png │ ├── Frame 3.png │ ├── Frame 4.png │ ├── Frame 5.png │ ├── Frame 6.png │ ├── Friday-Figma.mp4 │ └── Readme.md └── graphics │ ├── .picasa.ini │ ├── app-icon.png │ ├── feature-graphic.png │ ├── friday_application_preview │ ├── README.md │ ├── friday_application_preview.png │ ├── play_store_screenshots │ │ ├── alerts_section.png │ │ ├── classes_section.png │ │ ├── home_section.png │ │ ├── homework_section.png │ │ ├── profile_section.png │ │ └── sign_up_section.jpeg │ └── play_store_screenshots_framed │ │ ├── alerts_section_framed.png │ │ ├── classes_section_framed.png │ │ ├── home_section_framed.png │ │ ├── homework_section_framed.png │ │ ├── profile_section_framed.png │ │ └── sign_up_section_framed.png │ ├── phone-ss-1.png │ ├── phone-ss-2.png │ ├── phone-ss-3.png │ └── phone-ss-4.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Runner-Bridging-Header.h └── firebase_app_id_file.json ├── lib ├── constants.dart ├── feedback.dart ├── firebase_options.dart ├── l10n │ ├── app_en.arb │ ├── app_gu.arb │ ├── app_hi.arb │ ├── app_mr.arb │ └── app_ru.arb ├── localizationTexts │ ├── defaulttexts.dart │ ├── gujarati.dart │ ├── hindi.dart │ ├── kannada.dart │ ├── marathi.dart │ └── russian.dart ├── main.dart ├── models │ ├── alert.dart │ ├── classes.dart │ ├── homework.dart │ └── users.dart ├── onboarding │ └── introslider.dart ├── screens │ ├── alert_screen.dart │ ├── app_info_screen.dart │ ├── chat_screen.dart │ ├── classes_screen.dart │ ├── contact_us_screen.dart │ ├── faqs_screen.dart │ ├── favourites_screen.dart │ ├── help_screen.dart │ ├── home_screen.dart │ ├── homework_screen.dart │ ├── loading_screen.dart │ ├── login_page.dart │ ├── new_group_screen.dart │ ├── onboarding_page.dart │ ├── phone_verification_screen.dart │ ├── profile_screen.dart │ ├── settings_screen.dart │ ├── signup_additional_details_screen.dart │ ├── signup_page.dart │ ├── splash.dart │ ├── theme_screen.dart │ ├── themes.dart │ ├── verify_code_screen.dart │ └── welcome_screen.dart ├── services │ ├── auth_error_msg_toast.dart │ ├── authentication.dart │ ├── chats_db.dart │ ├── classes_db_services.dart │ ├── facebookAuthentication.dart │ ├── googleAuthentication.dart │ ├── phone_number_verification_db.dart │ ├── theme_provider.dart │ ├── user_db_services.dart │ └── user_info_services.dart ├── utils │ ├── bottom_navbar_tabs.dart │ └── notifications.dart └── widgets │ ├── animated_nav_bar.dart │ ├── auth_handling_widget.dart │ ├── auth_input_form_field.dart │ ├── bottom_navigation.dart │ ├── build_classes.dart │ ├── countdown_painter.dart │ ├── header.dart │ ├── login_form.dart │ ├── onboarding_canvas_design.dart │ ├── recents_alerts copy.dart │ ├── recents_alerts.dart │ ├── recents_homeworks.dart │ ├── reset_password.dart │ ├── round_button.dart │ ├── signup_form_additional_details.dart │ ├── signup_form_essential_details.dart │ └── splash_animation.dart ├── privacy-policy.md ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/ISSUE_TEMPLATE/documentation.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/auto-comment.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.github/workflows/issue-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/issue-assign.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/.metadata -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/README.md -------------------------------------------------------------------------------- /WikiPagesREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/WikiPagesREADME.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/class_manager/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/kotlin/com/example/class_manager/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/res/drawable/launch_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/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/avinashkranjan/Friday/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /assets/icons/grad_cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/grad_cap.svg -------------------------------------------------------------------------------- /assets/icons/homework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/homework.svg -------------------------------------------------------------------------------- /assets/icons/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/house.svg -------------------------------------------------------------------------------- /assets/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/icon.png -------------------------------------------------------------------------------- /assets/icons/read_book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/read_book.svg -------------------------------------------------------------------------------- /assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/settings.svg -------------------------------------------------------------------------------- /assets/icons/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/test.svg -------------------------------------------------------------------------------- /assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/icons/user.svg -------------------------------------------------------------------------------- /assets/images/fbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/images/fbook.png -------------------------------------------------------------------------------- /assets/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/images/google.png -------------------------------------------------------------------------------- /assets/images/phone.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/profile_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/images/profile_pic.jpg -------------------------------------------------------------------------------- /assets/images/slider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/images/slider1.png -------------------------------------------------------------------------------- /assets/images/slider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/images/slider2.png -------------------------------------------------------------------------------- /assets/images/slider3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/assets/images/slider3.png -------------------------------------------------------------------------------- /design-assets/Color scheme/color_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Color scheme/color_design.md -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Frame 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Frame 1.png -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Frame 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Frame 2.png -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Frame 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Frame 3.png -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Frame 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Frame 4.png -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Frame 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Frame 5.png -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Frame 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Frame 6.png -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Friday-Figma.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Friday-Figma.mp4 -------------------------------------------------------------------------------- /design-assets/Figma (Adding more graphics)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/Figma (Adding more graphics)/Readme.md -------------------------------------------------------------------------------- /design-assets/graphics/.picasa.ini: -------------------------------------------------------------------------------- 1 | [feature-graphic.jpeg] 2 | backuphash=48668 3 | -------------------------------------------------------------------------------- /design-assets/graphics/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/app-icon.png -------------------------------------------------------------------------------- /design-assets/graphics/feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/feature-graphic.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/README.md -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/friday_application_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/friday_application_preview.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots/alerts_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots/alerts_section.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots/classes_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots/classes_section.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots/home_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots/home_section.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots/homework_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots/homework_section.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots/profile_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots/profile_section.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots/sign_up_section.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots/sign_up_section.jpeg -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots_framed/alerts_section_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots_framed/alerts_section_framed.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots_framed/classes_section_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots_framed/classes_section_framed.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots_framed/home_section_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots_framed/home_section_framed.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots_framed/homework_section_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots_framed/homework_section_framed.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots_framed/profile_section_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots_framed/profile_section_framed.png -------------------------------------------------------------------------------- /design-assets/graphics/friday_application_preview/play_store_screenshots_framed/sign_up_section_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/friday_application_preview/play_store_screenshots_framed/sign_up_section_framed.png -------------------------------------------------------------------------------- /design-assets/graphics/phone-ss-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/phone-ss-1.png -------------------------------------------------------------------------------- /design-assets/graphics/phone-ss-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/phone-ss-2.png -------------------------------------------------------------------------------- /design-assets/graphics/phone-ss-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/phone-ss-3.png -------------------------------------------------------------------------------- /design-assets/graphics/phone-ss-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/design-assets/graphics/phone-ss-4.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /lib/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/constants.dart -------------------------------------------------------------------------------- /lib/feedback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/feedback.dart -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_gu.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/l10n/app_gu.arb -------------------------------------------------------------------------------- /lib/l10n/app_hi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/l10n/app_hi.arb -------------------------------------------------------------------------------- /lib/l10n/app_mr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/l10n/app_mr.arb -------------------------------------------------------------------------------- /lib/l10n/app_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/l10n/app_ru.arb -------------------------------------------------------------------------------- /lib/localizationTexts/defaulttexts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/localizationTexts/defaulttexts.dart -------------------------------------------------------------------------------- /lib/localizationTexts/gujarati.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/localizationTexts/gujarati.dart -------------------------------------------------------------------------------- /lib/localizationTexts/hindi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/localizationTexts/hindi.dart -------------------------------------------------------------------------------- /lib/localizationTexts/kannada.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/localizationTexts/kannada.dart -------------------------------------------------------------------------------- /lib/localizationTexts/marathi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/localizationTexts/marathi.dart -------------------------------------------------------------------------------- /lib/localizationTexts/russian.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/localizationTexts/russian.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/alert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/models/alert.dart -------------------------------------------------------------------------------- /lib/models/classes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/models/classes.dart -------------------------------------------------------------------------------- /lib/models/homework.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/models/homework.dart -------------------------------------------------------------------------------- /lib/models/users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/models/users.dart -------------------------------------------------------------------------------- /lib/onboarding/introslider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/onboarding/introslider.dart -------------------------------------------------------------------------------- /lib/screens/alert_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/alert_screen.dart -------------------------------------------------------------------------------- /lib/screens/app_info_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/app_info_screen.dart -------------------------------------------------------------------------------- /lib/screens/chat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/chat_screen.dart -------------------------------------------------------------------------------- /lib/screens/classes_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/classes_screen.dart -------------------------------------------------------------------------------- /lib/screens/contact_us_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/contact_us_screen.dart -------------------------------------------------------------------------------- /lib/screens/faqs_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/faqs_screen.dart -------------------------------------------------------------------------------- /lib/screens/favourites_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/favourites_screen.dart -------------------------------------------------------------------------------- /lib/screens/help_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/help_screen.dart -------------------------------------------------------------------------------- /lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/screens/homework_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/homework_screen.dart -------------------------------------------------------------------------------- /lib/screens/loading_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/loading_screen.dart -------------------------------------------------------------------------------- /lib/screens/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/login_page.dart -------------------------------------------------------------------------------- /lib/screens/new_group_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/new_group_screen.dart -------------------------------------------------------------------------------- /lib/screens/onboarding_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/onboarding_page.dart -------------------------------------------------------------------------------- /lib/screens/phone_verification_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/phone_verification_screen.dart -------------------------------------------------------------------------------- /lib/screens/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/profile_screen.dart -------------------------------------------------------------------------------- /lib/screens/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/signup_additional_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/signup_additional_details_screen.dart -------------------------------------------------------------------------------- /lib/screens/signup_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/signup_page.dart -------------------------------------------------------------------------------- /lib/screens/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/splash.dart -------------------------------------------------------------------------------- /lib/screens/theme_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/theme_screen.dart -------------------------------------------------------------------------------- /lib/screens/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/themes.dart -------------------------------------------------------------------------------- /lib/screens/verify_code_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/verify_code_screen.dart -------------------------------------------------------------------------------- /lib/screens/welcome_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/screens/welcome_screen.dart -------------------------------------------------------------------------------- /lib/services/auth_error_msg_toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/auth_error_msg_toast.dart -------------------------------------------------------------------------------- /lib/services/authentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/authentication.dart -------------------------------------------------------------------------------- /lib/services/chats_db.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/chats_db.dart -------------------------------------------------------------------------------- /lib/services/classes_db_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/classes_db_services.dart -------------------------------------------------------------------------------- /lib/services/facebookAuthentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/facebookAuthentication.dart -------------------------------------------------------------------------------- /lib/services/googleAuthentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/googleAuthentication.dart -------------------------------------------------------------------------------- /lib/services/phone_number_verification_db.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/phone_number_verification_db.dart -------------------------------------------------------------------------------- /lib/services/theme_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/theme_provider.dart -------------------------------------------------------------------------------- /lib/services/user_db_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/user_db_services.dart -------------------------------------------------------------------------------- /lib/services/user_info_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/services/user_info_services.dart -------------------------------------------------------------------------------- /lib/utils/bottom_navbar_tabs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/utils/bottom_navbar_tabs.dart -------------------------------------------------------------------------------- /lib/utils/notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/utils/notifications.dart -------------------------------------------------------------------------------- /lib/widgets/animated_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/animated_nav_bar.dart -------------------------------------------------------------------------------- /lib/widgets/auth_handling_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/auth_handling_widget.dart -------------------------------------------------------------------------------- /lib/widgets/auth_input_form_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/auth_input_form_field.dart -------------------------------------------------------------------------------- /lib/widgets/bottom_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/bottom_navigation.dart -------------------------------------------------------------------------------- /lib/widgets/build_classes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/build_classes.dart -------------------------------------------------------------------------------- /lib/widgets/countdown_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/countdown_painter.dart -------------------------------------------------------------------------------- /lib/widgets/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/header.dart -------------------------------------------------------------------------------- /lib/widgets/login_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/login_form.dart -------------------------------------------------------------------------------- /lib/widgets/onboarding_canvas_design.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/onboarding_canvas_design.dart -------------------------------------------------------------------------------- /lib/widgets/recents_alerts copy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/recents_alerts copy.dart -------------------------------------------------------------------------------- /lib/widgets/recents_alerts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/recents_alerts.dart -------------------------------------------------------------------------------- /lib/widgets/recents_homeworks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/recents_homeworks.dart -------------------------------------------------------------------------------- /lib/widgets/reset_password.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/reset_password.dart -------------------------------------------------------------------------------- /lib/widgets/round_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/round_button.dart -------------------------------------------------------------------------------- /lib/widgets/signup_form_additional_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/signup_form_additional_details.dart -------------------------------------------------------------------------------- /lib/widgets/signup_form_essential_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/signup_form_essential_details.dart -------------------------------------------------------------------------------- /lib/widgets/splash_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/lib/widgets/splash_animation.dart -------------------------------------------------------------------------------- /privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/privacy-policy.md -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashkranjan/Friday/HEAD/test/widget_test.dart --------------------------------------------------------------------------------