├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── student_ai │ │ │ │ ├── ListTileNativeFactory.kt │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_launcher_monochrome.xml │ │ │ └── launch_background.xml │ │ │ ├── layout │ │ │ └── list_tile_native_ad.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── pngs │ ├── github1.png │ ├── heart.png │ ├── linkedin.png │ └── palm.webp └── svgs │ ├── akLogo.svg │ ├── feedback.svg │ ├── g_ai.svg │ ├── google.svg │ ├── login.svg │ ├── logo.svg │ ├── openai.svg │ ├── rate.svg │ ├── share.svg │ ├── tiranga.svg │ └── x.svg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── 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 │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── data │ ├── constants │ │ ├── app_color.dart │ │ ├── card_skeleton.dart │ │ ├── constants.dart │ │ ├── globals.dart │ │ └── theme.dart │ ├── models │ │ ├── apps_metadata_model.dart │ │ ├── apps_model.dart │ │ ├── chat_model.dart │ │ ├── custom_app_model.dart │ │ ├── quiz_model.dart │ │ └── user_model.dart │ └── repositories │ │ ├── ai_model_repo.dart │ │ ├── auth_repo.dart │ │ ├── studentai_api_repo.dart │ │ └── user_repo.dart ├── firebase_options.dart ├── logic │ └── blocs │ │ ├── api │ │ ├── api_bloc.dart │ │ ├── api_event.dart │ │ └── api_state.dart │ │ ├── app_metadata │ │ ├── app_metadata_bloc.dart │ │ ├── app_metadata_event.dart │ │ └── app_metadata_state.dart │ │ ├── apps │ │ ├── apps_bloc.dart │ │ ├── apps_event.dart │ │ └── apps_state.dart │ │ ├── auth │ │ ├── auth_bloc.dart │ │ ├── auth_event.dart │ │ └── auth_state.dart │ │ ├── chat │ │ ├── chat_bloc.dart │ │ ├── chat_event.dart │ │ └── chat_state.dart │ │ ├── custom_app │ │ ├── custom_app_bloc.dart │ │ ├── custom_app_event.dart │ │ └── custom_app_state.dart │ │ ├── internet │ │ ├── internet_bloc.dart │ │ └── internet_state.dart │ │ ├── updater │ │ ├── updater_cubit.dart │ │ └── updater_state.dart │ │ ├── user │ │ ├── user_bloc.dart │ │ ├── user_event.dart │ │ └── user_state.dart │ │ └── validator │ │ ├── validator_bloc.dart │ │ ├── validator_event.dart │ │ └── validator_state.dart ├── main.dart ├── presentation │ └── screens │ │ ├── about │ │ └── about.dart │ │ ├── chat │ │ ├── chat_screen.dart │ │ └── widgets │ │ │ ├── ai_message.dart │ │ │ ├── chat_bubble.dart │ │ │ ├── message.dart │ │ │ ├── typing_animation.dart │ │ │ └── usr_message.dart │ │ ├── custom_apps │ │ ├── create_app_form.dart │ │ ├── custom_app_form.dart │ │ └── widgets │ │ │ ├── custom_app_text_field.dart │ │ │ └── custom_apps.dart │ │ ├── form │ │ ├── my_form.dart │ │ └── widgets │ │ │ └── dummy_form.dart │ │ ├── home │ │ ├── home.dart │ │ └── widgets │ │ │ ├── add_app_widget.dart │ │ │ ├── app_title.dart │ │ │ ├── apps.dart │ │ │ ├── card_widget.dart │ │ │ ├── dummy_cards.dart │ │ │ ├── made_with.dart │ │ │ ├── more_button.dart │ │ │ └── my_header_delegate.dart │ │ ├── login │ │ └── login.dart │ │ ├── profile │ │ └── profile_screen.dart │ │ ├── quiz │ │ ├── mcq.dart │ │ ├── quiz.dart │ │ ├── quiz_result.dart │ │ └── widgets │ │ │ ├── mind_map.dart │ │ │ ├── question_list_builder.dart │ │ │ └── quiz_review.dart │ │ ├── search │ │ ├── search_screen.dart │ │ └── widgets │ │ │ └── my_search_bar.dart │ │ ├── settings │ │ ├── api_config.dart │ │ ├── settings.dart │ │ └── widgets │ │ │ └── settings_button.dart │ │ └── updater │ │ └── update_listener.dart └── widgets │ ├── feedback_card.dart │ ├── loading_widget.dart │ ├── my_text_field.dart │ ├── no_internet.dart │ ├── rate_card.dart │ ├── share_card.dart │ ├── show_snackbar.dart │ ├── support_card.dart │ └── support_us.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── propmts.txt ├── pubspec.lock ├── pubspec.yaml ├── shorebird.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/student_ai/ListTileNativeFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/kotlin/com/example/student_ai/ListTileNativeFactory.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/student_ai/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/kotlin/com/example/student_ai/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/list_tile_native_ad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/layout/list_tile_native_ad.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/pngs/github1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/pngs/github1.png -------------------------------------------------------------------------------- /assets/pngs/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/pngs/heart.png -------------------------------------------------------------------------------- /assets/pngs/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/pngs/linkedin.png -------------------------------------------------------------------------------- /assets/pngs/palm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/pngs/palm.webp -------------------------------------------------------------------------------- /assets/svgs/akLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/akLogo.svg -------------------------------------------------------------------------------- /assets/svgs/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/feedback.svg -------------------------------------------------------------------------------- /assets/svgs/g_ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/g_ai.svg -------------------------------------------------------------------------------- /assets/svgs/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/google.svg -------------------------------------------------------------------------------- /assets/svgs/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/login.svg -------------------------------------------------------------------------------- /assets/svgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/logo.svg -------------------------------------------------------------------------------- /assets/svgs/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/openai.svg -------------------------------------------------------------------------------- /assets/svgs/rate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/rate.svg -------------------------------------------------------------------------------- /assets/svgs/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/share.svg -------------------------------------------------------------------------------- /assets/svgs/tiranga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/tiranga.svg -------------------------------------------------------------------------------- /assets/svgs/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/assets/svgs/x.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/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/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/data/constants/app_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/constants/app_color.dart -------------------------------------------------------------------------------- /lib/data/constants/card_skeleton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/constants/card_skeleton.dart -------------------------------------------------------------------------------- /lib/data/constants/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/constants/constants.dart -------------------------------------------------------------------------------- /lib/data/constants/globals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/constants/globals.dart -------------------------------------------------------------------------------- /lib/data/constants/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/constants/theme.dart -------------------------------------------------------------------------------- /lib/data/models/apps_metadata_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/models/apps_metadata_model.dart -------------------------------------------------------------------------------- /lib/data/models/apps_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/models/apps_model.dart -------------------------------------------------------------------------------- /lib/data/models/chat_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/models/chat_model.dart -------------------------------------------------------------------------------- /lib/data/models/custom_app_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/models/custom_app_model.dart -------------------------------------------------------------------------------- /lib/data/models/quiz_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/models/quiz_model.dart -------------------------------------------------------------------------------- /lib/data/models/user_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/models/user_model.dart -------------------------------------------------------------------------------- /lib/data/repositories/ai_model_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/repositories/ai_model_repo.dart -------------------------------------------------------------------------------- /lib/data/repositories/auth_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/repositories/auth_repo.dart -------------------------------------------------------------------------------- /lib/data/repositories/studentai_api_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/repositories/studentai_api_repo.dart -------------------------------------------------------------------------------- /lib/data/repositories/user_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/data/repositories/user_repo.dart -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/logic/blocs/api/api_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/api/api_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/api/api_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/api/api_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/api/api_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/api/api_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/app_metadata/app_metadata_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/app_metadata/app_metadata_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/app_metadata/app_metadata_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/app_metadata/app_metadata_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/app_metadata/app_metadata_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/app_metadata/app_metadata_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/apps/apps_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/apps/apps_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/apps/apps_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/apps/apps_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/apps/apps_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/apps/apps_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/auth/auth_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/auth/auth_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/auth/auth_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/auth/auth_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/auth/auth_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/auth/auth_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/chat/chat_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/chat/chat_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/chat/chat_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/chat/chat_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/chat/chat_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/chat/chat_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/custom_app/custom_app_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/custom_app/custom_app_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/custom_app/custom_app_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/custom_app/custom_app_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/custom_app/custom_app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/custom_app/custom_app_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/internet/internet_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/internet/internet_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/internet/internet_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/internet/internet_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/updater/updater_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/updater/updater_cubit.dart -------------------------------------------------------------------------------- /lib/logic/blocs/updater/updater_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/updater/updater_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/user/user_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/user/user_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/user/user_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/user/user_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/user/user_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/user/user_state.dart -------------------------------------------------------------------------------- /lib/logic/blocs/validator/validator_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/validator/validator_bloc.dart -------------------------------------------------------------------------------- /lib/logic/blocs/validator/validator_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/validator/validator_event.dart -------------------------------------------------------------------------------- /lib/logic/blocs/validator/validator_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/logic/blocs/validator/validator_state.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/presentation/screens/about/about.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/about/about.dart -------------------------------------------------------------------------------- /lib/presentation/screens/chat/chat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/chat/chat_screen.dart -------------------------------------------------------------------------------- /lib/presentation/screens/chat/widgets/ai_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/chat/widgets/ai_message.dart -------------------------------------------------------------------------------- /lib/presentation/screens/chat/widgets/chat_bubble.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/chat/widgets/chat_bubble.dart -------------------------------------------------------------------------------- /lib/presentation/screens/chat/widgets/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/chat/widgets/message.dart -------------------------------------------------------------------------------- /lib/presentation/screens/chat/widgets/typing_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/chat/widgets/typing_animation.dart -------------------------------------------------------------------------------- /lib/presentation/screens/chat/widgets/usr_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/chat/widgets/usr_message.dart -------------------------------------------------------------------------------- /lib/presentation/screens/custom_apps/create_app_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/custom_apps/create_app_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/custom_apps/custom_app_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/custom_apps/custom_app_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/custom_apps/widgets/custom_app_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/custom_apps/widgets/custom_app_text_field.dart -------------------------------------------------------------------------------- /lib/presentation/screens/custom_apps/widgets/custom_apps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/custom_apps/widgets/custom_apps.dart -------------------------------------------------------------------------------- /lib/presentation/screens/form/my_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/form/my_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/form/widgets/dummy_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/form/widgets/dummy_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/home.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/add_app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/add_app_widget.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/app_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/app_title.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/apps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/apps.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/card_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/card_widget.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/dummy_cards.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/dummy_cards.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/made_with.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/made_with.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/more_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/more_button.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/widgets/my_header_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/home/widgets/my_header_delegate.dart -------------------------------------------------------------------------------- /lib/presentation/screens/login/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/login/login.dart -------------------------------------------------------------------------------- /lib/presentation/screens/profile/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/profile/profile_screen.dart -------------------------------------------------------------------------------- /lib/presentation/screens/quiz/mcq.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/quiz/mcq.dart -------------------------------------------------------------------------------- /lib/presentation/screens/quiz/quiz.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/quiz/quiz.dart -------------------------------------------------------------------------------- /lib/presentation/screens/quiz/quiz_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/quiz/quiz_result.dart -------------------------------------------------------------------------------- /lib/presentation/screens/quiz/widgets/mind_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/quiz/widgets/mind_map.dart -------------------------------------------------------------------------------- /lib/presentation/screens/quiz/widgets/question_list_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/quiz/widgets/question_list_builder.dart -------------------------------------------------------------------------------- /lib/presentation/screens/quiz/widgets/quiz_review.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/quiz/widgets/quiz_review.dart -------------------------------------------------------------------------------- /lib/presentation/screens/search/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/search/search_screen.dart -------------------------------------------------------------------------------- /lib/presentation/screens/search/widgets/my_search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/search/widgets/my_search_bar.dart -------------------------------------------------------------------------------- /lib/presentation/screens/settings/api_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/settings/api_config.dart -------------------------------------------------------------------------------- /lib/presentation/screens/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/settings/settings.dart -------------------------------------------------------------------------------- /lib/presentation/screens/settings/widgets/settings_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/settings/widgets/settings_button.dart -------------------------------------------------------------------------------- /lib/presentation/screens/updater/update_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/presentation/screens/updater/update_listener.dart -------------------------------------------------------------------------------- /lib/widgets/feedback_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/feedback_card.dart -------------------------------------------------------------------------------- /lib/widgets/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/loading_widget.dart -------------------------------------------------------------------------------- /lib/widgets/my_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/my_text_field.dart -------------------------------------------------------------------------------- /lib/widgets/no_internet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/no_internet.dart -------------------------------------------------------------------------------- /lib/widgets/rate_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/rate_card.dart -------------------------------------------------------------------------------- /lib/widgets/share_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/share_card.dart -------------------------------------------------------------------------------- /lib/widgets/show_snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/show_snackbar.dart -------------------------------------------------------------------------------- /lib/widgets/support_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/support_card.dart -------------------------------------------------------------------------------- /lib/widgets/support_us.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/lib/widgets/support_us.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /propmts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/propmts.txt -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /shorebird.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/shorebird.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Avadhkumar-geek/StudentAI/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------