From 35acd1f21f417bcf071b8ddf2836f7809f1c01aa Mon Sep 17 00:00:00 2001 From: Elham Rababh Date: Sun, 24 Oct 2021 17:17:31 +0300 Subject: [PATCH] finish the nursing DiagnosisScreen --- .../profile/diagnosis/diagnosis_screen.dart | 33 +++++++++++++++++-- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/lib/screens/patients/profile/diagnosis/diagnosis_screen.dart b/lib/screens/patients/profile/diagnosis/diagnosis_screen.dart index 3347beaf..5751896e 100644 --- a/lib/screens/patients/profile/diagnosis/diagnosis_screen.dart +++ b/lib/screens/patients/profile/diagnosis/diagnosis_screen.dart @@ -77,7 +77,7 @@ class _ProgressNoteState extends State { body: model.diagnosisForInPatientList == null || model.diagnosisForInPatientList.length == 0 ? DrAppEmbeddedError( - error: TranslationBase.of(context).errorNoProgressNote) + error: TranslationBase.of(context).noItem) : Container( color: Colors.grey[200], child: Column( @@ -126,7 +126,7 @@ class _ProgressNoteState extends State { TranslationBase.of( context) .createdBy, - fontSize: 10, + fontSize: 12, ), Expanded( child: AppText( @@ -206,13 +206,40 @@ class _ProgressNoteState extends State { mainAxisAlignment: MainAxisAlignment.start, children: [ + AppText( + TranslationBase.of( + context) + .icd + " : ", + fontSize: 12, + ), Expanded( child: AppText( model .diagnosisForInPatientList[ index] .iCDCode10ID, - fontSize: 10, + fontSize: 12, + isCopyable: true, + ), + ), + ]), + SizedBox( + height: 8, + ), + Row( + mainAxisAlignment: + MainAxisAlignment.start, + children: [ + AppText("Ascii Desc : ", + fontSize: 12, + ), + Expanded( + child: AppText( + model + .diagnosisForInPatientList[ + index] + .asciiDesc, + fontSize: 12, isCopyable: true, ), ),