From 1bce2ad9792db0ba8943d93f0872d10239a17a46 Mon Sep 17 00:00:00 2001 From: hussam al-habibeh Date: Thu, 15 Apr 2021 17:21:54 +0300 Subject: [PATCH] hot Fixes --- .../medical-file/medical_file_details.dart | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/lib/screens/medical-file/medical_file_details.dart b/lib/screens/medical-file/medical_file_details.dart index 765275b0..9f12e8b7 100644 --- a/lib/screens/medical-file/medical_file_details.dart +++ b/lib/screens/medical-file/medical_file_details.dart @@ -1095,7 +1095,24 @@ class _MedicalFileDetailsState extends State { ), ), ) - : Text("There's no medical file for this patient") + : Center( + child: Column( + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + SizedBox( + height: 100, + ), + Image.asset('assets/images/no-data.png'), + Padding( + padding: const EdgeInsets.all(8.0), + child: Texts('No Data For This Visit '), + ), + SizedBox( + height: 100, + ), + ], + ), + ) ], ), ),