From 764e2e29f52ed97bc978080511cc7db03dc2d2d5 Mon Sep 17 00:00:00 2001 From: Elham Rababah Date: Thu, 17 Jun 2021 15:44:32 +0300 Subject: [PATCH] first fix from procedure --- lib/config/config.dart | 4 ++-- lib/screens/procedures/entity_list_fav_procedure.dart | 8 ++++---- lib/widgets/shared/text_fields/TextFields.dart | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/config/config.dart b/lib/config/config.dart index c8af8ad9..0283577e 100644 --- a/lib/config/config.dart +++ b/lib/config/config.dart @@ -5,8 +5,8 @@ const ONLY_NUMBERS = "[0-9]"; const ONLY_LETTERS = "[a-zA-Z &'\"]"; const ONLY_DATE = "[0-9/]"; const BASE_URL_LIVE_CARE = 'https://livecare.hmg.com/'; -const BASE_URL = 'https://hmgwebservices.com/'; -// const BASE_URL = 'https://uat.hmgwebservices.com/'; +// const BASE_URL = 'https://hmgwebservices.com/'; +const BASE_URL = 'https://uat.hmgwebservices.com/'; const PHARMACY_ITEMS_URL = "Services/Lists.svc/REST/GetPharmcyItems_Region_enh"; const PHARMACY_LIST_URL = "Services/Patients.svc/REST/GetPharmcyList"; const PATIENT_PROGRESS_NOTE_URL = "Services/DoctorApplication.svc/REST/GetProgressNoteForInPatient"; diff --git a/lib/screens/procedures/entity_list_fav_procedure.dart b/lib/screens/procedures/entity_list_fav_procedure.dart index 9d0835ae..97e3bcba 100644 --- a/lib/screens/procedures/entity_list_fav_procedure.dart +++ b/lib/screens/procedures/entity_list_fav_procedure.dart @@ -112,11 +112,11 @@ class _EntityListCheckboxSearchFavProceduresWidgetState extends State { default: if (widget.suffixIcon != null) return InkWell( - onTap: widget.onSuffixTap!, + onTap: widget.onSuffixTap??null, child: Icon(widget.suffixIcon, size: 22.0, color: widget.suffixIconColor != null ? widget.suffixIconColor : Colors.grey[500])); else