From 8aeb7495966913afd9c95a409f2153ab54f53c16 Mon Sep 17 00:00:00 2001 From: hussam al-habibeh Date: Sat, 27 Feb 2021 22:06:56 +0200 Subject: [PATCH] prescription update --- lib/screens/prescription/prescription_screen.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/screens/prescription/prescription_screen.dart b/lib/screens/prescription/prescription_screen.dart index 9e3a5f04..ab152bf1 100644 --- a/lib/screens/prescription/prescription_screen.dart +++ b/lib/screens/prescription/prescription_screen.dart @@ -206,7 +206,7 @@ class _NewPrescriptionScreenState extends State { context) .size .width * - 0.09, + 0.1, child: Column( children: [ AppText( @@ -290,7 +290,7 @@ class _NewPrescriptionScreenState extends State { .entityList[index] .startDate)), fontSize: - 12.0, + 13.5, ), ), SizedBox( @@ -465,7 +465,7 @@ class _NewPrescriptionScreenState extends State { text: TextSpan( style: TextStyle(color: Colors.black), - text: model.prescriptionList[0].entityList[index].pharmacyInervention.toString() == null ? "" : model.prescriptionList[0].entityList[index].pharmacyInervention.toString()), + text: model.prescriptionList[0].entityList[index].pharmacyInervention == null ? "" : model.prescriptionList[0].entityList[index].pharmacyInervention.toString()), ), ), ],