Logo Lanfrica

Max13570/Eswatini-Medical-University-Final-School-Project-AI-powered-Mental-health-monitoring-App-

Domain:

healthcare

Record type:

software
Creator:
Max
Host:
# AI Powered Mental Health Monitoring Application ## πŸ“– Overview This project is a **Flutter-based healthcare and mental health monitoring system**. It combines **AI-driven mental health detection** with **telemedicine features** such as video consultations, appointment scheduling, and role-based dashboards for doctors, patients, receptionists, and administrators. --- ## πŸš€ Features - **AI mental health monitoring** using Python-trained models integrated with Flutter - **Role-based dashboards** for Admin, Doctor, Patient, and Receptionist - **Video consultations** powered by Jitsi Meet integration - **Appointment management** including booking, reminders, and tracking - **Security settings** for account and data protection - **Real-time Firebase integration** for authentication and data storage --- ## πŸ› οΈ Tech Stack - **Flutter** β€” mobile app development - **Dart** β€” core application logic and UI - **Firebase** β€” authentication, cloud storage, and real-time database - **Python** β€” AI model training and backend processing --- ## πŸ“‚ Project Structure ``` AI-Mental-Health-App/ β”‚ β”œβ”€β”€ Admin/ β”‚ β”œβ”€β”€ admin_dashboard_screen.dart β”‚ β”œβ”€β”€ manageAccountsScreen.dart β”‚ └── securitySettingsScreen.dart β”‚ β”œβ”€β”€ Doctor/ β”‚ β”œβ”€β”€ doctor_dashboard_screen.dart β”‚ β”œβ”€β”€ doctor_appointments_screen.dart β”‚ β”œβ”€β”€ doctor_consultation_screen.dart β”‚ └── doctor_patient_recommendations_screen.dart β”‚ β”œβ”€β”€ Patient/ β”‚ β”œβ”€β”€ patient_dashboard_screen.dart β”‚ β”œβ”€β”€ patient_reports_screen.dart β”‚ β”œβ”€β”€ appointment_booking_screen.dart β”‚ β”œβ”€β”€ assessment_screen.dart β”‚ └── consultation_screen.dart β”‚ β”œβ”€β”€ Receptionist/ β”‚ β”œβ”€β”€ receptionist_dashboard_screen.dart β”‚ β”œβ”€β”€ accept_appointments_screen.dart β”‚ β”œβ”€β”€ set_appointment_reminders_screen.dart β”‚ └── view_booked_appointments_screen.dart β”‚ β”œβ”€β”€ widgets/ β”‚ β”œβ”€β”€ mental_health_scale_widget.dart β”‚ └── jitsiMeetWidget.dart β”‚ β”œβ”€β”€ common.dart β”œβ”€β”€ login_screen.dart β”œβ”€β”€ signup_screen.dart β”œβ”€β”€ role_selection_screen.dart β”œβ”€β”€ video_call_screen.dart └── welcome_s …