import 'package:doctor_app_flutter/config/config.dart'; import 'package:doctor_app_flutter/config/size_config.dart'; import 'package:doctor_app_flutter/core/viewModel/medical_file_view_model.dart'; import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart'; import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart'; import 'package:doctor_app_flutter/screens/base/base_view.dart'; import 'package:doctor_app_flutter/screens/medical-file/medical_file_details.dart'; import 'package:doctor_app_flutter/screens/patients/profile/patient_profile_screen.dart'; import 'package:doctor_app_flutter/util/date-utils.dart'; import 'package:doctor_app_flutter/util/helpers.dart'; import 'package:doctor_app_flutter/util/translations_delegate_base.dart'; import 'package:doctor_app_flutter/widgets/patients/profile/patient-page-header-widget.dart'; import 'package:doctor_app_flutter/widgets/patients/profile/patient-profile-header-new-design.dart'; import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart'; import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart'; import 'package:doctor_app_flutter/widgets/shared/network_base_view.dart'; import 'package:flutter/material.dart'; import 'package:hexcolor/hexcolor.dart'; class MedicalFilePage extends StatefulWidget { @override _MedicalFilePageState createState() => _MedicalFilePageState(); } class _MedicalFilePageState extends State { PatiantInformtion patient; @override Widget build(BuildContext context) { final routeArgs = ModalRoute.of(context).settings.arguments as Map; patient = routeArgs['patient']; String patientType = routeArgs['patientType']; String arrivalType = routeArgs['arrivalType']; return BaseView( onModelReady: (model) => model.getMedicalFile(mrn: patient.patientId), builder: (BuildContext context, MedicalFileViewModel model, Widget child) => AppScaffold( isShowAppBar: true, appBarTitle: TranslationBase.of(context).medicalReport.toUpperCase(), body: NetworkBaseView( baseViewModel: model, child: SingleChildScrollView( child: Container( child: Column( // mainAxisAlignment: model.medicalFileList.length != 0 && // model.medicalFileList != null // ? MainAxisAlignment.start // : MainAxisAlignment.center, children: [ PatientProfileHeaderNewDesign( patient, patient.patientType.toString(), arrivalType), Padding( padding: EdgeInsets.symmetric(horizontal: 12.0, vertical: 8.0), child: Container( child: Padding( padding: const EdgeInsets.all(8.0), child: Column( children: [ Row( children: [ AppText( 'Medical', fontSize: 15.0, fontWeight: FontWeight.w600, fontFamily: 'Poppins', ), ], ), Row( children: [ AppText( 'Report', fontSize: 30.0, fontWeight: FontWeight.w700, ), ], ), ], ), ), ), ), (model.medicalFileList != null && model.medicalFileList.length != 0) ? ListView.builder( //physics: , physics: NeverScrollableScrollPhysics(), scrollDirection: Axis.vertical, shrinkWrap: true, itemCount: model.medicalFileList[0].entityList[0] .timelines.length, itemBuilder: (BuildContext ctxt, int index) { return Padding( padding: EdgeInsets.symmetric( horizontal: 12.0, vertical: 8.0), child: InkWell( child: Container( width: double.infinity, margin: EdgeInsets.only( top: 10, left: 10, right: 10), padding: EdgeInsets.all(8.0), decoration: BoxDecoration( color: Colors.white, borderRadius: BorderRadius.all( Radius.circular(10.0), ), border: Border.all( color: Colors.grey[200], width: 0.5), ), child: Column( children: [ Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Row( children: [ AppText( model .medicalFileList[0] .entityList[0] .timelines[index] .doctorName, fontWeight: FontWeight.w700, fontSize: 17.0, fontFamily: 'Poppins', ) ], ), Row( children: [ AppText( Helpers.convertStringToDate(model .medicalFileList[0] .entityList[0] .timelines[index] .date) .day .toString() + "/", ), AppText( Helpers.convertStringToDate(model .medicalFileList[0] .entityList[0] .timelines[index] .date) .month .toString() + "/", ), AppText( Helpers.convertStringToDate( model .medicalFileList[0] .entityList[0] .timelines[index] .date) .year .toString(), ), ], ) ], ), Row( mainAxisAlignment: MainAxisAlignment.start, children: [ Padding( padding: const EdgeInsets.all(8.0), child: Column( children: [ ClipRRect( borderRadius: BorderRadius.all( Radius.circular(30)), child: Image.network( 'https://previews.123rf.com/images/yupiramos/yupiramos1705/yupiramos170524444/78443570-a-female-doctor-avatar-character-vector-illustration-design.jpg', fit: BoxFit.cover, width: 60, height: 70, ), ), ], ), ), Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( children: [ AppText( TranslationBase.of(context) .clinic + ": ", ), AppText( model .medicalFileList[0] .entityList[0] .timelines[index] .clinicName, fontWeight: FontWeight.w600, ), ], ), Row( mainAxisAlignment: MainAxisAlignment .spaceBetween, children: [ AppText( TranslationBase.of(context) .branch + ": ", ), AppText( model .medicalFileList[0] .entityList[0] .timelines[index] .projectName, fontWeight: FontWeight.w600, ), ], ), ], ), ], ), Row( mainAxisAlignment: MainAxisAlignment.end, children: [ Column( children: [ Icon( Icons.remove_red_eye, size: 30.0, ) ], ) ], ), ], ), ), onTap: () { Navigator.push( context, MaterialPageRoute( builder: (context) => MedicalFileDetails( age: patient.age, firstName: patient.firstName, lastName: patient.lastName, gender: patient.genderDescription, encounterNumber: index, pp: patient.patientId, patient: patient, )), ); }, ), ); }) : Column( children: [ Container( child: AppText( 'THERES NO MEDICAL FILE FOR THIS Patient', ), ), SizedBox( height: 400, ) ], ) ], ), ), ), ), ), ); } }