├── .github └── workflows │ ├── Android.yml │ ├── Firebase_workflow.yml │ └── main.yml ├── .gitignore ├── App ├── GoogleService-Info.plist ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── IIITD │ │ │ │ └── ALT │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── react-settings-plugin │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── expo │ │ │ └── plugins │ │ │ └── ReactSettingsPlugin.kt │ └── settings.gradle ├── app.json ├── app │ ├── alt-nlp │ │ └── text_summarization.py │ ├── announcement │ │ ├── announcement.tsx │ │ ├── announcementCard.tsx │ │ └── announcementsAdd.tsx │ ├── dashboard │ │ ├── courseAdd.tsx │ │ ├── courseCard.tsx │ │ ├── facultyDashboard.tsx │ │ ├── formAddCourse.tsx │ │ ├── profileOptions.tsx │ │ ├── studentAddCourseForm.tsx │ │ └── studentDashboard.tsx │ ├── database │ │ ├── announcement.tsx │ │ ├── courses.tsx │ │ ├── faculty.tsx │ │ ├── feedback.tsx │ │ ├── feedbackresponses.tsx │ │ ├── quiz.tsx │ │ ├── quizresponse.tsx │ │ └── student.tsx │ ├── faculty-settings │ │ └── FacultySettings.tsx │ ├── feedback │ │ ├── feedbackFaculty.tsx │ │ ├── feedbackForm.tsx │ │ ├── feedbackHomePage.tsx │ │ ├── feedbackResultslist.tsx │ │ ├── studentFeedbackCard.tsx │ │ └── studentFeedbackPage.tsx │ ├── index.tsx │ ├── navigation │ │ ├── announcementStack.tsx │ │ ├── facultyStack.tsx │ │ ├── feedbackStack.tsx │ │ ├── quizStack.tsx │ │ ├── studentStack.tsx │ │ └── tabNavigator.tsx │ ├── quiz │ │ ├── multicorrect.tsx │ │ ├── options.tsx │ │ ├── quizFacultyPage.tsx │ │ ├── quizHomePage.tsx │ │ ├── quizResultGraph.tsx │ │ └── quizStudentPage.tsx │ ├── screens │ │ ├── LoginScreen.tsx │ │ ├── RegisterUser.tsx │ │ ├── SignupScreen.tsx │ │ └── checkloggin.tsx │ ├── studentlist │ │ ├── studentcard.tsx │ │ └── studentlist.tsx │ └── utils │ │ ├── Dimentions.tsx │ │ ├── coursePics.tsx │ │ ├── errormessages.tsx │ │ └── firebase.tsx ├── assets │ ├── 1.jpeg │ ├── 2.jpeg │ ├── 3.jpeg │ ├── 4.jpeg │ ├── 5.jpeg │ ├── Faculty.png │ ├── LoadingImage.jpg │ ├── Logo.png │ ├── Student.png │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── partial-react-logo.png │ │ ├── react-logo.png │ │ ├── react-logo@2x.png │ │ ├── react-logo@3x.png │ │ └── splash.png ├── babel.config.js ├── google-services.json ├── hooks │ ├── useColorScheme.ts │ ├── useColorScheme.web.ts │ └── useThemeColor.ts ├── ios │ ├── .gitignore │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.properties.json │ ├── activelearningteach.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── activelearningteach.xcscheme │ ├── activelearningteach.xcworkspace │ │ └── contents.xcworkspacedata │ └── activelearningteach │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── GoogleService-Info.plist │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ ├── Info.plist │ │ ├── PrivacyInfo.xcprivacy │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ └── Expo.plist │ │ ├── activelearningteach-Bridging-Header.h │ │ ├── activelearningteach.entitlements │ │ ├── main.m │ │ └── noop-file.swift ├── metro.config.js ├── package.json ├── react-native-switch-selector.d.ts ├── scripts │ └── reset-project.js └── tsconfig.json ├── README.md └── docs ├── readme.md ├── readmeAnnouncement.md ├── readmeAuth.md ├── readmeDashBoard.md └── readmeFeedback.md /.github/workflows/Android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/.github/workflows/Android.yml -------------------------------------------------------------------------------- /.github/workflows/Firebase_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/.github/workflows/Firebase_workflow.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/.gitignore -------------------------------------------------------------------------------- /App/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/GoogleService-Info.plist -------------------------------------------------------------------------------- /App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/README.md -------------------------------------------------------------------------------- /App/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/.gitignore -------------------------------------------------------------------------------- /App/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/build.gradle -------------------------------------------------------------------------------- /App/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/debug.keystore -------------------------------------------------------------------------------- /App/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /App/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /App/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /App/android/app/src/main/java/com/IIITD/ALT/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/java/com/IIITD/ALT/MainActivity.kt -------------------------------------------------------------------------------- /App/android/app/src/main/java/com/IIITD/ALT/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/java/com/IIITD/ALT/MainApplication.kt -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /App/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/build.gradle -------------------------------------------------------------------------------- /App/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/gradle.properties -------------------------------------------------------------------------------- /App/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /App/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /App/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/gradlew -------------------------------------------------------------------------------- /App/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/gradlew.bat -------------------------------------------------------------------------------- /App/android/react-settings-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/react-settings-plugin/build.gradle.kts -------------------------------------------------------------------------------- /App/android/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt -------------------------------------------------------------------------------- /App/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/android/settings.gradle -------------------------------------------------------------------------------- /App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app.json -------------------------------------------------------------------------------- /App/app/alt-nlp/text_summarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/alt-nlp/text_summarization.py -------------------------------------------------------------------------------- /App/app/announcement/announcement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/announcement/announcement.tsx -------------------------------------------------------------------------------- /App/app/announcement/announcementCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/announcement/announcementCard.tsx -------------------------------------------------------------------------------- /App/app/announcement/announcementsAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/announcement/announcementsAdd.tsx -------------------------------------------------------------------------------- /App/app/dashboard/courseAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/dashboard/courseAdd.tsx -------------------------------------------------------------------------------- /App/app/dashboard/courseCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/dashboard/courseCard.tsx -------------------------------------------------------------------------------- /App/app/dashboard/facultyDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/dashboard/facultyDashboard.tsx -------------------------------------------------------------------------------- /App/app/dashboard/formAddCourse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/dashboard/formAddCourse.tsx -------------------------------------------------------------------------------- /App/app/dashboard/profileOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/dashboard/profileOptions.tsx -------------------------------------------------------------------------------- /App/app/dashboard/studentAddCourseForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/dashboard/studentAddCourseForm.tsx -------------------------------------------------------------------------------- /App/app/dashboard/studentDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/dashboard/studentDashboard.tsx -------------------------------------------------------------------------------- /App/app/database/announcement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/announcement.tsx -------------------------------------------------------------------------------- /App/app/database/courses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/courses.tsx -------------------------------------------------------------------------------- /App/app/database/faculty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/faculty.tsx -------------------------------------------------------------------------------- /App/app/database/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/feedback.tsx -------------------------------------------------------------------------------- /App/app/database/feedbackresponses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/feedbackresponses.tsx -------------------------------------------------------------------------------- /App/app/database/quiz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/quiz.tsx -------------------------------------------------------------------------------- /App/app/database/quizresponse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/quizresponse.tsx -------------------------------------------------------------------------------- /App/app/database/student.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/database/student.tsx -------------------------------------------------------------------------------- /App/app/faculty-settings/FacultySettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/faculty-settings/FacultySettings.tsx -------------------------------------------------------------------------------- /App/app/feedback/feedbackFaculty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/feedback/feedbackFaculty.tsx -------------------------------------------------------------------------------- /App/app/feedback/feedbackForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/feedback/feedbackForm.tsx -------------------------------------------------------------------------------- /App/app/feedback/feedbackHomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/feedback/feedbackHomePage.tsx -------------------------------------------------------------------------------- /App/app/feedback/feedbackResultslist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/feedback/feedbackResultslist.tsx -------------------------------------------------------------------------------- /App/app/feedback/studentFeedbackCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/feedback/studentFeedbackCard.tsx -------------------------------------------------------------------------------- /App/app/feedback/studentFeedbackPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/feedback/studentFeedbackPage.tsx -------------------------------------------------------------------------------- /App/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/index.tsx -------------------------------------------------------------------------------- /App/app/navigation/announcementStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/navigation/announcementStack.tsx -------------------------------------------------------------------------------- /App/app/navigation/facultyStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/navigation/facultyStack.tsx -------------------------------------------------------------------------------- /App/app/navigation/feedbackStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/navigation/feedbackStack.tsx -------------------------------------------------------------------------------- /App/app/navigation/quizStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/navigation/quizStack.tsx -------------------------------------------------------------------------------- /App/app/navigation/studentStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/navigation/studentStack.tsx -------------------------------------------------------------------------------- /App/app/navigation/tabNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/navigation/tabNavigator.tsx -------------------------------------------------------------------------------- /App/app/quiz/multicorrect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/quiz/multicorrect.tsx -------------------------------------------------------------------------------- /App/app/quiz/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/quiz/options.tsx -------------------------------------------------------------------------------- /App/app/quiz/quizFacultyPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/quiz/quizFacultyPage.tsx -------------------------------------------------------------------------------- /App/app/quiz/quizHomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/quiz/quizHomePage.tsx -------------------------------------------------------------------------------- /App/app/quiz/quizResultGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/quiz/quizResultGraph.tsx -------------------------------------------------------------------------------- /App/app/quiz/quizStudentPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/quiz/quizStudentPage.tsx -------------------------------------------------------------------------------- /App/app/screens/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/screens/LoginScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/RegisterUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/screens/RegisterUser.tsx -------------------------------------------------------------------------------- /App/app/screens/SignupScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/screens/SignupScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/checkloggin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/screens/checkloggin.tsx -------------------------------------------------------------------------------- /App/app/studentlist/studentcard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/studentlist/studentcard.tsx -------------------------------------------------------------------------------- /App/app/studentlist/studentlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/studentlist/studentlist.tsx -------------------------------------------------------------------------------- /App/app/utils/Dimentions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/utils/Dimentions.tsx -------------------------------------------------------------------------------- /App/app/utils/coursePics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/utils/coursePics.tsx -------------------------------------------------------------------------------- /App/app/utils/errormessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/app/utils/errormessages.tsx -------------------------------------------------------------------------------- /App/app/utils/firebase.tsx: -------------------------------------------------------------------------------- 1 | import { initializeApp } from 'firebase/app'; 2 | -------------------------------------------------------------------------------- /App/assets/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/1.jpeg -------------------------------------------------------------------------------- /App/assets/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/2.jpeg -------------------------------------------------------------------------------- /App/assets/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/3.jpeg -------------------------------------------------------------------------------- /App/assets/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/4.jpeg -------------------------------------------------------------------------------- /App/assets/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/5.jpeg -------------------------------------------------------------------------------- /App/assets/Faculty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/Faculty.png -------------------------------------------------------------------------------- /App/assets/LoadingImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/LoadingImage.jpg -------------------------------------------------------------------------------- /App/assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/Logo.png -------------------------------------------------------------------------------- /App/assets/Student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/Student.png -------------------------------------------------------------------------------- /App/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /App/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /App/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/favicon.png -------------------------------------------------------------------------------- /App/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/icon.png -------------------------------------------------------------------------------- /App/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /App/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/react-logo.png -------------------------------------------------------------------------------- /App/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /App/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /App/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/assets/images/splash.png -------------------------------------------------------------------------------- /App/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/babel.config.js -------------------------------------------------------------------------------- /App/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/google-services.json -------------------------------------------------------------------------------- /App/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /App/hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /App/hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /App/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/.gitignore -------------------------------------------------------------------------------- /App/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/.xcode.env -------------------------------------------------------------------------------- /App/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/Podfile -------------------------------------------------------------------------------- /App/ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/Podfile.properties.json -------------------------------------------------------------------------------- /App/ios/activelearningteach.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /App/ios/activelearningteach.xcodeproj/xcshareddata/xcschemes/activelearningteach.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach.xcodeproj/xcshareddata/xcschemes/activelearningteach.xcscheme -------------------------------------------------------------------------------- /App/ios/activelearningteach.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /App/ios/activelearningteach/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/AppDelegate.h -------------------------------------------------------------------------------- /App/ios/activelearningteach/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/AppDelegate.mm -------------------------------------------------------------------------------- /App/ios/activelearningteach/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/GoogleService-Info.plist -------------------------------------------------------------------------------- /App/ios/activelearningteach/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /App/ios/activelearningteach/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/activelearningteach/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /App/ios/activelearningteach/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/activelearningteach/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /App/ios/activelearningteach/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/activelearningteach/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /App/ios/activelearningteach/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Info.plist -------------------------------------------------------------------------------- /App/ios/activelearningteach/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /App/ios/activelearningteach/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/SplashScreen.storyboard -------------------------------------------------------------------------------- /App/ios/activelearningteach/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/Supporting/Expo.plist -------------------------------------------------------------------------------- /App/ios/activelearningteach/activelearningteach-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/activelearningteach-Bridging-Header.h -------------------------------------------------------------------------------- /App/ios/activelearningteach/activelearningteach.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/activelearningteach.entitlements -------------------------------------------------------------------------------- /App/ios/activelearningteach/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/main.m -------------------------------------------------------------------------------- /App/ios/activelearningteach/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/ios/activelearningteach/noop-file.swift -------------------------------------------------------------------------------- /App/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/metro.config.js -------------------------------------------------------------------------------- /App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/package.json -------------------------------------------------------------------------------- /App/react-native-switch-selector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/react-native-switch-selector.d.ts -------------------------------------------------------------------------------- /App/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/scripts/reset-project.js -------------------------------------------------------------------------------- /App/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/App/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/README.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/readmeAnnouncement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/docs/readmeAnnouncement.md -------------------------------------------------------------------------------- /docs/readmeAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/docs/readmeAuth.md -------------------------------------------------------------------------------- /docs/readmeDashBoard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/docs/readmeDashBoard.md -------------------------------------------------------------------------------- /docs/readmeFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Active-Learning-and-Teaching/ALT/HEAD/docs/readmeFeedback.md --------------------------------------------------------------------------------