From 4b0a41d7d8efb8ddffc04b26b4f204eec5262450 Mon Sep 17 00:00:00 2001 From: haroon amjad Date: Wed, 12 Jul 2023 12:54:43 +0300 Subject: [PATCH 1/2] updates --- lib/config/config.dart | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/config/config.dart b/lib/config/config.dart index 4981aca0..e261a875 100644 --- a/lib/config/config.dart +++ b/lib/config/config.dart @@ -20,8 +20,8 @@ var PACKAGES_ORDERS = '/api/orders'; var PACKAGES_ORDER_HISTORY = '/api/orders/items'; var PACKAGES_TAMARA_OPT = '/api/orders/paymentoptions/tamara'; // var BASE_URL = 'http://10.50.100.198:2018/'; - var BASE_URL = 'https://uat.hmgwebservices.com/'; -// var BASE_URL = 'https://hmgwebservices.com/'; + // var BASE_URL = 'https://uat.hmgwebservices.com/'; +var BASE_URL = 'https://hmgwebservices.com/'; // var BASE_URL = 'https://orash.cloudsolutions.com.sa/'; // var BASE_URL = 'https://vidauat.cloudsolutions.com.sa/'; diff --git a/pubspec.yaml b/pubspec.yaml index 39370e58..5d9f5e79 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -174,7 +174,7 @@ dependencies: geofencing: ^0.1.0 -# speech_to_text: ^6.1.1 + speech_to_text: ^6.1.1 # path: speech_to_text in_app_update: ^3.0.0 From d9404d3abefd3e27f2cd048aceca2abf15045beb Mon Sep 17 00:00:00 2001 From: haroon amjad Date: Thu, 13 Jul 2023 11:30:13 +0300 Subject: [PATCH 2/2] Medical Report changes --- lib/pages/medical/reports/report_home_page.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/pages/medical/reports/report_home_page.dart b/lib/pages/medical/reports/report_home_page.dart index 6e6d991a..08f1e43a 100644 --- a/lib/pages/medical/reports/report_home_page.dart +++ b/lib/pages/medical/reports/report_home_page.dart @@ -27,7 +27,7 @@ class _HomeReportPageState extends State with SingleTickerProvid @override void initState() { super.initState(); - _tabController = TabController(length: 4, vsync: this); + _tabController = TabController(length: 3, vsync: this); } @override @@ -86,10 +86,10 @@ class _HomeReportPageState extends State with SingleTickerProvid TranslationBase.of(context).ready, style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'), ), - Text( - TranslationBase.of(context).completed, - style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'), - ), + // Text( + // TranslationBase.of(context).completed, + // style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'), + // ), Text( TranslationBase.of(context).cancelled, style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'), @@ -104,7 +104,7 @@ class _HomeReportPageState extends State with SingleTickerProvid children: [ ReportListWidget(reportList: model.reportsOrderRequestList, emailAddress: model.user.emailAddress), ReportListWidget(reportList: model.reportsOrderReadyList, emailAddress: model.user.emailAddress), - ReportListWidget(reportList: model.reportsOrderCompletedList, emailAddress: model.user.emailAddress), + // ReportListWidget(reportList: model.reportsOrderCompletedList, emailAddress: model.user.emailAddress), ReportListWidget(reportList: model.reportsOrderCanceledList, emailAddress: model.user.emailAddress), ], ),