├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── android ├── app │ ├── IMPORTANT_Read Me!!! │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── fast_turtle_v2 │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── 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 │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── 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.h │ ├── AppDelegate.m │ ├── 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 │ └── main.m ├── lib ├── dbHelper │ ├── addData.dart │ ├── delData.dart │ ├── searchData.dart │ └── updateData.dart ├── main.dart ├── mixins │ └── validation_mixin.dart ├── models │ ├── activeAppointmentModel.dart │ ├── adminModel.dart │ ├── doktorModel.dart │ ├── favListModel.dart │ ├── hospitalModel.dart │ ├── passiveAppoModel.dart │ ├── sectionModel.dart │ └── userModel.dart ├── screens │ ├── addAdminPage.dart │ ├── addDoctorPage.dart │ ├── addHospitalPage.dart │ ├── addSectionPage.dart │ ├── adminHomePage.dart │ ├── appointmentDetail.dart │ ├── appointmentHistory.dart │ ├── closeAppointmentPage.dart │ ├── deleteDoctorPage.dart │ ├── deleteHospitalPage.dart │ ├── deleteSectionPage.dart │ ├── doctorHomePage.dart │ ├── makeAppointment.dart │ ├── openAppointmentPage.dart │ ├── registerPage.dart │ ├── showActiveAppo.dart │ ├── showAppoForDoc.dart │ ├── showAppoTimesForAdmin.dart │ ├── showAppointmentTimes.dart │ ├── showDoctors.dart │ ├── showHospitals.dart │ ├── showSections.dart │ ├── showUserFavList.dart │ ├── updateDoctorPage.dart │ ├── updateDoctorPass.dart │ ├── updateHospitalPage.dart │ ├── updateSectionPage.dart │ ├── updateUserInfo.dart │ ├── userHomePage.dart │ └── welcomePage.dart └── utilities │ ├── constants.dart │ └── routes.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/README.md -------------------------------------------------------------------------------- /android/app/IMPORTANT_Read Me!!!: -------------------------------------------------------------------------------- 1 | YOU MUST ADD GOOGLE-SERVICES JSON FILE IN THIS DIRECTORY 2 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/fast_turtle_v2/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/app/src/main/java/com/example/fast_turtle_v2/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-App/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-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/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/dbHelper/addData.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/dbHelper/addData.dart -------------------------------------------------------------------------------- /lib/dbHelper/delData.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/dbHelper/delData.dart -------------------------------------------------------------------------------- /lib/dbHelper/searchData.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/dbHelper/searchData.dart -------------------------------------------------------------------------------- /lib/dbHelper/updateData.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/dbHelper/updateData.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/mixins/validation_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/mixins/validation_mixin.dart -------------------------------------------------------------------------------- /lib/models/activeAppointmentModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/activeAppointmentModel.dart -------------------------------------------------------------------------------- /lib/models/adminModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/adminModel.dart -------------------------------------------------------------------------------- /lib/models/doktorModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/doktorModel.dart -------------------------------------------------------------------------------- /lib/models/favListModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/favListModel.dart -------------------------------------------------------------------------------- /lib/models/hospitalModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/hospitalModel.dart -------------------------------------------------------------------------------- /lib/models/passiveAppoModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/passiveAppoModel.dart -------------------------------------------------------------------------------- /lib/models/sectionModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/sectionModel.dart -------------------------------------------------------------------------------- /lib/models/userModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/models/userModel.dart -------------------------------------------------------------------------------- /lib/screens/addAdminPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/addAdminPage.dart -------------------------------------------------------------------------------- /lib/screens/addDoctorPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/addDoctorPage.dart -------------------------------------------------------------------------------- /lib/screens/addHospitalPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/addHospitalPage.dart -------------------------------------------------------------------------------- /lib/screens/addSectionPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/addSectionPage.dart -------------------------------------------------------------------------------- /lib/screens/adminHomePage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/adminHomePage.dart -------------------------------------------------------------------------------- /lib/screens/appointmentDetail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/appointmentDetail.dart -------------------------------------------------------------------------------- /lib/screens/appointmentHistory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/appointmentHistory.dart -------------------------------------------------------------------------------- /lib/screens/closeAppointmentPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/closeAppointmentPage.dart -------------------------------------------------------------------------------- /lib/screens/deleteDoctorPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/deleteDoctorPage.dart -------------------------------------------------------------------------------- /lib/screens/deleteHospitalPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/deleteHospitalPage.dart -------------------------------------------------------------------------------- /lib/screens/deleteSectionPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/deleteSectionPage.dart -------------------------------------------------------------------------------- /lib/screens/doctorHomePage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/doctorHomePage.dart -------------------------------------------------------------------------------- /lib/screens/makeAppointment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/makeAppointment.dart -------------------------------------------------------------------------------- /lib/screens/openAppointmentPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/openAppointmentPage.dart -------------------------------------------------------------------------------- /lib/screens/registerPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/registerPage.dart -------------------------------------------------------------------------------- /lib/screens/showActiveAppo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showActiveAppo.dart -------------------------------------------------------------------------------- /lib/screens/showAppoForDoc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showAppoForDoc.dart -------------------------------------------------------------------------------- /lib/screens/showAppoTimesForAdmin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showAppoTimesForAdmin.dart -------------------------------------------------------------------------------- /lib/screens/showAppointmentTimes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showAppointmentTimes.dart -------------------------------------------------------------------------------- /lib/screens/showDoctors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showDoctors.dart -------------------------------------------------------------------------------- /lib/screens/showHospitals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showHospitals.dart -------------------------------------------------------------------------------- /lib/screens/showSections.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showSections.dart -------------------------------------------------------------------------------- /lib/screens/showUserFavList.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/showUserFavList.dart -------------------------------------------------------------------------------- /lib/screens/updateDoctorPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/updateDoctorPage.dart -------------------------------------------------------------------------------- /lib/screens/updateDoctorPass.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/updateDoctorPass.dart -------------------------------------------------------------------------------- /lib/screens/updateHospitalPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/updateHospitalPage.dart -------------------------------------------------------------------------------- /lib/screens/updateSectionPage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/updateSectionPage.dart -------------------------------------------------------------------------------- /lib/screens/updateUserInfo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/updateUserInfo.dart -------------------------------------------------------------------------------- /lib/screens/userHomePage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/userHomePage.dart -------------------------------------------------------------------------------- /lib/screens/welcomePage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/screens/welcomePage.dart -------------------------------------------------------------------------------- /lib/utilities/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/utilities/constants.dart -------------------------------------------------------------------------------- /lib/utilities/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/lib/utilities/routes.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhyozturk/Doctor-Appointment-App/HEAD/test/widget_test.dart --------------------------------------------------------------------------------