From 98e0e1f078766cf581111cd4dc113d90fa8c160a Mon Sep 17 00:00:00 2001 From: Elham Rababah Date: Fri, 23 Apr 2021 21:07:47 +0300 Subject: [PATCH] return note back --- .../profile/note/progress_note_screen.dart | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/screens/patients/profile/note/progress_note_screen.dart b/lib/screens/patients/profile/note/progress_note_screen.dart index 588c3079..25c786bf 100644 --- a/lib/screens/patients/profile/note/progress_note_screen.dart +++ b/lib/screens/patients/profile/note/progress_note_screen.dart @@ -376,13 +376,25 @@ class _ProgressNoteState extends State { fontSize: 14, ), ], - crossAxisAlignment: CrossAxisAlignment.end, + crossAxisAlignment: + CrossAxisAlignment.end, ) ], ), SizedBox( height: 8, ), + Row( + mainAxisAlignment: + MainAxisAlignment.start, + children: [ + Expanded( + child: AppText( + notesList[index].notes, + fontSize: 10, + ), + ), + ]) ], ), ),