├── .gitignore ├── .metadata ├── README.md ├── Screenshots ├── Calendar Holiday.png ├── Calendar Present Day.png ├── Courses.png ├── Faculty.png ├── Fees.png ├── First Semester.png ├── Home Screen.png ├── PG.png └── UG.png ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── aliah_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── aliahlogo.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── color.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── fonts └── AliahApp.ttf ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── 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 ├── components │ ├── aliah_app_icons.dart │ ├── back_arrow_button.dart │ ├── constants.dart │ ├── course_programs.dart │ ├── hero_animation_error_fix.dart │ ├── home_cards.dart │ ├── id_card.dart │ └── programs.dart ├── main.dart └── screens │ ├── anti_ragging │ ├── anti_ragging.dart │ ├── anti_ragging_cell.dart │ ├── anti_ragging_cell_details.dart │ └── anti_ragging_detail_chip.dart │ ├── calendar │ └── calendar.dart │ ├── courses │ ├── courses.dart │ ├── postgraduate │ │ ├── ma_course.dart │ │ ├── msc_course.dart │ │ ├── mtech_course.dart │ │ └── post_graduates.dart │ └── undergraduate │ │ ├── ba_honours_courses.dart │ │ ├── bsc_courses.dart │ │ ├── engineering_courses.dart │ │ ├── lateral_entry.dart │ │ └── undergraduates.dart │ ├── faculty │ ├── cen_faculty.dart │ ├── cse_faculty.dart │ ├── ece_faculty.dart │ ├── een_faculty.dart │ ├── faculty.dart │ ├── faculty_member.dart │ └── men_faculty.dart │ ├── fees_structure │ ├── EvenSem_fees_data.dart │ ├── FirstSem_fees_data.dart │ ├── OddSem_fees_data.dart │ ├── even_semester.dart │ ├── fees_structure.dart │ ├── first_semester.dart │ └── odd_semester.dart │ ├── home_page.dart │ ├── login_page.dart │ ├── registration_page.dart │ ├── routine.dart │ ├── splash_screen.dart │ └── website.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Calendar Holiday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/Calendar Holiday.png -------------------------------------------------------------------------------- /Screenshots/Calendar Present Day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/Calendar Present Day.png -------------------------------------------------------------------------------- /Screenshots/Courses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/Courses.png -------------------------------------------------------------------------------- /Screenshots/Faculty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/Faculty.png -------------------------------------------------------------------------------- /Screenshots/Fees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/Fees.png -------------------------------------------------------------------------------- /Screenshots/First Semester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/First Semester.png -------------------------------------------------------------------------------- /Screenshots/Home Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/Home Screen.png -------------------------------------------------------------------------------- /Screenshots/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/PG.png -------------------------------------------------------------------------------- /Screenshots/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/Screenshots/UG.png -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/aliah_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/kotlin/com/example/aliah_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/aliahlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/drawable/aliahlogo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /fonts/AliahApp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/fonts/AliahApp.ttf -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/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/zyllus17/Aliah-University-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/components/aliah_app_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/aliah_app_icons.dart -------------------------------------------------------------------------------- /lib/components/back_arrow_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/back_arrow_button.dart -------------------------------------------------------------------------------- /lib/components/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/constants.dart -------------------------------------------------------------------------------- /lib/components/course_programs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/course_programs.dart -------------------------------------------------------------------------------- /lib/components/hero_animation_error_fix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/hero_animation_error_fix.dart -------------------------------------------------------------------------------- /lib/components/home_cards.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/home_cards.dart -------------------------------------------------------------------------------- /lib/components/id_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/id_card.dart -------------------------------------------------------------------------------- /lib/components/programs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/components/programs.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/screens/anti_ragging/anti_ragging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/anti_ragging/anti_ragging.dart -------------------------------------------------------------------------------- /lib/screens/anti_ragging/anti_ragging_cell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/anti_ragging/anti_ragging_cell.dart -------------------------------------------------------------------------------- /lib/screens/anti_ragging/anti_ragging_cell_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/anti_ragging/anti_ragging_cell_details.dart -------------------------------------------------------------------------------- /lib/screens/anti_ragging/anti_ragging_detail_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/anti_ragging/anti_ragging_detail_chip.dart -------------------------------------------------------------------------------- /lib/screens/calendar/calendar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/calendar/calendar.dart -------------------------------------------------------------------------------- /lib/screens/courses/courses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/courses.dart -------------------------------------------------------------------------------- /lib/screens/courses/postgraduate/ma_course.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/postgraduate/ma_course.dart -------------------------------------------------------------------------------- /lib/screens/courses/postgraduate/msc_course.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/postgraduate/msc_course.dart -------------------------------------------------------------------------------- /lib/screens/courses/postgraduate/mtech_course.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/postgraduate/mtech_course.dart -------------------------------------------------------------------------------- /lib/screens/courses/postgraduate/post_graduates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/postgraduate/post_graduates.dart -------------------------------------------------------------------------------- /lib/screens/courses/undergraduate/ba_honours_courses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/undergraduate/ba_honours_courses.dart -------------------------------------------------------------------------------- /lib/screens/courses/undergraduate/bsc_courses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/undergraduate/bsc_courses.dart -------------------------------------------------------------------------------- /lib/screens/courses/undergraduate/engineering_courses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/undergraduate/engineering_courses.dart -------------------------------------------------------------------------------- /lib/screens/courses/undergraduate/lateral_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/undergraduate/lateral_entry.dart -------------------------------------------------------------------------------- /lib/screens/courses/undergraduate/undergraduates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/courses/undergraduate/undergraduates.dart -------------------------------------------------------------------------------- /lib/screens/faculty/cen_faculty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/faculty/cen_faculty.dart -------------------------------------------------------------------------------- /lib/screens/faculty/cse_faculty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/faculty/cse_faculty.dart -------------------------------------------------------------------------------- /lib/screens/faculty/ece_faculty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/faculty/ece_faculty.dart -------------------------------------------------------------------------------- /lib/screens/faculty/een_faculty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/faculty/een_faculty.dart -------------------------------------------------------------------------------- /lib/screens/faculty/faculty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/faculty/faculty.dart -------------------------------------------------------------------------------- /lib/screens/faculty/faculty_member.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/faculty/faculty_member.dart -------------------------------------------------------------------------------- /lib/screens/faculty/men_faculty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/faculty/men_faculty.dart -------------------------------------------------------------------------------- /lib/screens/fees_structure/EvenSem_fees_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/fees_structure/EvenSem_fees_data.dart -------------------------------------------------------------------------------- /lib/screens/fees_structure/FirstSem_fees_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/fees_structure/FirstSem_fees_data.dart -------------------------------------------------------------------------------- /lib/screens/fees_structure/OddSem_fees_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/fees_structure/OddSem_fees_data.dart -------------------------------------------------------------------------------- /lib/screens/fees_structure/even_semester.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/fees_structure/even_semester.dart -------------------------------------------------------------------------------- /lib/screens/fees_structure/fees_structure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/fees_structure/fees_structure.dart -------------------------------------------------------------------------------- /lib/screens/fees_structure/first_semester.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/fees_structure/first_semester.dart -------------------------------------------------------------------------------- /lib/screens/fees_structure/odd_semester.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/fees_structure/odd_semester.dart -------------------------------------------------------------------------------- /lib/screens/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/home_page.dart -------------------------------------------------------------------------------- /lib/screens/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/login_page.dart -------------------------------------------------------------------------------- /lib/screens/registration_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/registration_page.dart -------------------------------------------------------------------------------- /lib/screens/routine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/routine.dart -------------------------------------------------------------------------------- /lib/screens/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/splash_screen.dart -------------------------------------------------------------------------------- /lib/screens/website.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/lib/screens/website.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyllus17/Aliah-University-App/HEAD/test/widget_test.dart --------------------------------------------------------------------------------