diff --git a/assets/images/svg/cancel_circle.svg b/assets/images/svg/cancel_circle.svg
new file mode 100644
index 0000000..3ceda6f
--- /dev/null
+++ b/assets/images/svg/cancel_circle.svg
@@ -0,0 +1,3 @@
+
diff --git a/assets/images/svg/insurance_history_icon.svg b/assets/images/svg/insurance_history_icon.svg
new file mode 100644
index 0000000..4ae2a1c
--- /dev/null
+++ b/assets/images/svg/insurance_history_icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/svg/prescription_reminder_icon.svg b/assets/images/svg/prescription_reminder_icon.svg
new file mode 100644
index 0000000..3a854c3
--- /dev/null
+++ b/assets/images/svg/prescription_reminder_icon.svg
@@ -0,0 +1,5 @@
+
diff --git a/assets/images/svg/update_insurance_card.svg b/assets/images/svg/update_insurance_card.svg
new file mode 100644
index 0000000..9b21aab
--- /dev/null
+++ b/assets/images/svg/update_insurance_card.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/langs/ar-SA.json b/assets/langs/ar-SA.json
index 2c7ac9b..ede5e64 100644
--- a/assets/langs/ar-SA.json
+++ b/assets/langs/ar-SA.json
@@ -782,6 +782,9 @@
"resultsPending": "النتائج معلقة",
"resultsAvailable": "النتائج متاحة",
"viewReport": "عرض التقرير",
+ "checkAvailability": "التحقق من التوفر",
+ "readInstructions": "قراءة التعليمات",
+ "searchLabReport" : "ابحث عن تقرير المختبر",
"prescriptionDeliveryError": "هذه العيادة لا تدعم إعادة التعبئة والتسليم.",
"receiveOtpToast": "أين تود تلقي رمز التحقق OTP؟",
"enterPhoneNumber": "أدخل رقم الهاتف",
diff --git a/assets/langs/en-US.json b/assets/langs/en-US.json
index d01d9f6..8ccd2c4 100644
--- a/assets/langs/en-US.json
+++ b/assets/langs/en-US.json
@@ -783,6 +783,9 @@
"resultsPending": "Results Pending",
"resultsAvailable": "Results Available",
"viewReport": "View Report",
+ "checkAvailability": "Check Availability",
+ "readInstructions": "Read Instructions",
+ "searchLabReport" : "Search Lab Report",
"prescriptionDeliveryError": "This clinic doesn't support refill",
"prepareToElevate": "Prepared to elevate your health and well-being?",
"iAcceptTermsConditions": "I Accept the Terms and Conditions",
diff --git a/lib/core/api_consts.dart b/lib/core/api_consts.dart
index 6e1e92a..11c44ba 100644
--- a/lib/core/api_consts.dart
+++ b/lib/core/api_consts.dart
@@ -749,7 +749,6 @@ class ApiConsts {
static final String sendActivationCode = 'Services/Authentication.svc/REST/SendActivationCodebyOTPNotificationType';
-
static setBackendURLs() {
if (isDevelopment) {
baseUrl = "https://uat.hmgwebservices.com/";
diff --git a/lib/core/app_assets.dart b/lib/core/app_assets.dart
index bd3e541..2077440 100644
--- a/lib/core/app_assets.dart
+++ b/lib/core/app_assets.dart
@@ -67,6 +67,10 @@ class AppAssets {
static const String rating_icon = '$svgBasePath/rating_icon.svg';
static const String doctor_calendar_icon = '$svgBasePath/doctor_calendar_icon.svg';
static const String prescription_remarks_icon = '$svgBasePath/prescription_remarks_icon.svg';
+ static const String prescription_reminder_icon = '$svgBasePath/prescription_reminder_icon.svg';
+ static const String insurance_history_icon = '$svgBasePath/insurance_history_icon.svg';
+ static const String cancel_circle_icon = '$svgBasePath/cancel_circle.svg';
+ static const String update_insurance_card_icon = '$svgBasePath/update_insurance_card.svg';
//bottom navigation//
@@ -75,6 +79,7 @@ class AppAssets {
static const String myFilesBottom = '$svgBasePath/my_files_bottom.svg';
static const String toDoBottom = '$svgBasePath/todo_bottom.svg';
static const String servicesBottom = '$svgBasePath/services_bottom.svg';
+ static const String closeBottomNav = '$svgBasePath/close_bottom_nav.svg';
// PNGS //
static const String hmg_logo = '$pngBasePath/hmg_logo.png';
diff --git a/lib/core/dependencies.dart b/lib/core/dependencies.dart
index 65fd2c6..aa32fa6 100644
--- a/lib/core/dependencies.dart
+++ b/lib/core/dependencies.dart
@@ -6,6 +6,8 @@ import 'package:hmg_patient_app_new/features/authentication/authentication_repo.
import 'package:hmg_patient_app_new/features/authentication/authentication_view_model.dart';
import 'package:hmg_patient_app_new/features/book_appointments/book_appointments_repo.dart';
import 'package:hmg_patient_app_new/features/common/common_repo.dart';
+import 'package:hmg_patient_app_new/features/insurance/insurance_repo.dart';
+import 'package:hmg_patient_app_new/features/insurance/insurance_view_model.dart';
import 'package:hmg_patient_app_new/features/lab/lab_repo.dart';
import 'package:hmg_patient_app_new/features/lab/lab_view_model.dart';
import 'package:hmg_patient_app_new/features/my_appointments/my_appointments_repo.dart';
@@ -65,6 +67,7 @@ class AppDependencies {
getIt.registerLazySingleton(() => LabRepoImp(loggerService: getIt(), apiClient: getIt()));
getIt.registerLazySingleton(() => RadiologyRepoImp(loggerService: getIt(), apiClient: getIt()));
getIt.registerLazySingleton(() => PrescriptionsRepoImp(loggerService: getIt(), apiClient: getIt()));
+ getIt.registerLazySingleton(() => InsuranceRepoImp(loggerService: getIt(), apiClient: getIt()));
// ViewModels
// Global/shared VMs → LazySingleton
@@ -90,6 +93,13 @@ class AppDependencies {
),
);
+ getIt.registerLazySingleton(
+ () => InsuranceViewModel(
+ insuranceRepo: getIt(),
+ errorHandlerService: getIt(),
+ ),
+ );
+
getIt.registerLazySingleton(
() => AuthenticationViewModel(
authenticationRepo: getIt(),
diff --git a/lib/core/utils/calendar_utils.dart b/lib/core/utils/calendar_utils.dart
index 39c7a14..8786f7f 100644
--- a/lib/core/utils/calendar_utils.dart
+++ b/lib/core/utils/calendar_utils.dart
@@ -4,8 +4,6 @@ import 'dart:io';
import 'dart:ui';
import 'package:device_calendar/device_calendar.dart';
-import 'package:easy_localization/easy_localization.dart';
-import 'package:hmg_patient_app_new/core/utils/utils.dart';
import 'package:manage_calendar_events/manage_calendar_events.dart' as ios;
import 'package:timezone/data/latest.dart' as tzl;
@@ -137,14 +135,12 @@ class CalendarUtils {
print("catchError " + e.toString());
}).whenComplete(() {
print("whenComplete Calender ID " + eventId!);
- // Utils.showToast(LocaleKeys.appoReminderSuccess.tr());
});
} else {
await _myPlugin.createEvent(calendarId: writableCalendars.id!, event: iosCalEvent).catchError((e) {
print("catchError " + e.toString());
}).whenComplete(() {
print("whenComplete Calender ID iOS " + eventId!);
- // Utils.showToast(LocaleKeys.appoReminderSuccess.tr());
});
}
}
diff --git a/lib/core/utils/size_utils.dart b/lib/core/utils/size_utils.dart
index 0b37082..6ad1835 100644
--- a/lib/core/utils/size_utils.dart
+++ b/lib/core/utils/size_utils.dart
@@ -11,6 +11,10 @@ extension ResponsiveExtension on num {
double get h => ((this * _width) / FIGMA_DESIGN_WIDTH);
double get fSize => ((this * _width) / FIGMA_DESIGN_WIDTH);
+ static double get screenHeight => SizeUtils.height;
+
+ /// Full screen width
+ static double get screenWidth => SizeUtils.width;
}
extension FormatExtension on double {
diff --git a/lib/extensions/string_extensions.dart b/lib/extensions/string_extensions.dart
index 4d813f0..8ecdc3a 100644
--- a/lib/extensions/string_extensions.dart
+++ b/lib/extensions/string_extensions.dart
@@ -13,13 +13,16 @@ extension CapExtension on String {
String get allInCaps => this.toUpperCase();
- String get capitalizeFirstofEach => this.trim().length > 0 ? this.trim().toLowerCase().split(" ").map((str) => str.inCaps).join(" ") : "";
+ String get capitalizeFirstofEach =>
+ this.trim().length > 0 ? this.trim().toLowerCase().split(" ").map((str) => str.inCaps).join(" ") : "";
}
extension EmailValidator on String {
Widget get toWidget => Text(this);
- Widget toText8({Color? color, bool isBold = false, int? maxlines, FontStyle? fontStyle, TextOverflow? textOverflow}) => Text(
+ Widget toText8(
+ {Color? color, bool isBold = false, int? maxlines, FontStyle? fontStyle, TextOverflow? textOverflow}) =>
+ Text(
this,
maxLines: maxlines,
overflow: textOverflow,
@@ -32,7 +35,14 @@ extension EmailValidator on String {
),
);
- Widget toText10({Color? color, bool isBold = false, bool isUnderLine = false, int? maxlines, FontStyle? fontStyle, TextOverflow? textOverflow}) => Text(
+ Widget toText10(
+ {Color? color,
+ bool isBold = false,
+ bool isUnderLine = false,
+ int? maxlines,
+ FontStyle? fontStyle,
+ TextOverflow? textOverflow}) =>
+ Text(
this,
maxLines: maxlines,
overflow: textOverflow,
@@ -46,7 +56,15 @@ extension EmailValidator on String {
decorationColor: color ?? AppColors.blackColor),
);
- Widget toText11({Color? color, FontWeight? weight, bool isUnderLine = false, bool isCenter = false, bool isBold = false, int maxLine = 0, double letterSpacing = 0.64}) => Text(
+ Widget toText11(
+ {Color? color,
+ FontWeight? weight,
+ bool isUnderLine = false,
+ bool isCenter = false,
+ bool isBold = false,
+ int maxLine = 0,
+ double letterSpacing = 0.64}) =>
+ Text(
this,
textAlign: isCenter ? TextAlign.center : null,
maxLines: (maxLine > 0) ? maxLine : null,
@@ -60,21 +78,33 @@ extension EmailValidator on String {
),
);
- Widget toText12({Color? color, bool isUnderLine = false, bool isBold = false, bool isCenter = false, int maxLine = 0}) => Text(
+ Widget toText12(
+ {Color? color,
+ bool isUnderLine = false,
+ bool isBold = false,
+ FontWeight? fontWeight,
+ bool isCenter = false,
+ double? height,
+ int maxLine = 0}) =>
+ Text(
this,
textAlign: isCenter ? TextAlign.center : null,
maxLines: (maxLine > 0) ? maxLine : null,
style: TextStyle(
+
fontSize: 12.fSize,
- fontWeight: isBold ? FontWeight.bold : FontWeight.normal,
+ fontWeight: fontWeight ?? (isBold ? FontWeight.bold : FontWeight.normal),
color: color ?? AppColors.blackColor,
letterSpacing: -0.4,
+ height: height,
decorationColor: isUnderLine ? AppColors.blackColor : null,
decoration: isUnderLine ? TextDecoration.underline : null,
),
);
- Widget toText12Auto({Color? color, bool isUnderLine = false, bool isBold = false, bool isCenter = false, int maxLine = 0}) => AutoSizeText(
+ Widget toText12Auto(
+ {Color? color, bool isUnderLine = false, bool isBold = false, bool isCenter = false, int maxLine = 0}) =>
+ AutoSizeText(
this,
textAlign: isCenter ? TextAlign.center : null,
maxLines: (maxLine > 0) ? maxLine : null,
@@ -135,7 +165,14 @@ extension EmailValidator on String {
decoration: isUnderLine ? TextDecoration.underline : null),
);
- Widget toText14({Color? color, bool isUnderLine = false, bool isBold = false, bool isCenter = false, FontWeight? weight, int? maxlines}) => Text(
+ Widget toText14(
+ {Color? color,
+ bool isUnderLine = false,
+ bool isBold = false,
+ bool isCenter = false,
+ FontWeight? weight,
+ int? maxlines}) =>
+ Text(
this,
textAlign: isCenter ? TextAlign.center : null,
maxLines: maxlines,
@@ -147,7 +184,14 @@ extension EmailValidator on String {
decoration: isUnderLine ? TextDecoration.underline : null),
);
- Widget toText15({Color? color, bool isUnderLine = false, bool isBold = false, bool isCenter = false, FontWeight? weight, int? maxlines}) => Text(
+ Widget toText15(
+ {Color? color,
+ bool isUnderLine = false,
+ bool isBold = false,
+ bool isCenter = false,
+ FontWeight? weight,
+ int? maxlines}) =>
+ Text(
this,
textAlign: isCenter ? TextAlign.center : null,
maxLines: maxlines,
@@ -183,72 +227,84 @@ extension EmailValidator on String {
Widget toText17({Color? color, bool isBold = false, bool isCenter = false}) => Text(
this,
textAlign: isCenter ? TextAlign.center : null,
- style: TextStyle(color: color ?? AppColors.blackColor, fontSize: 17.fSize, letterSpacing: -0.4, fontWeight: isBold ? FontWeight.bold : FontWeight.normal),
+ style: TextStyle(
+ color: color ?? AppColors.blackColor,
+ fontSize: 17.fSize,
+ letterSpacing: -0.4,
+ fontWeight: isBold ? FontWeight.bold : FontWeight.normal),
);
Widget toText18({Color? color, bool isBold = false, bool isCenter = false, int? maxlines}) => Text(
maxLines: maxlines,
textAlign: isCenter ? TextAlign.center : null,
this,
- style: TextStyle(fontSize: 18.fSize, fontWeight: isBold ? FontWeight.bold : FontWeight.normal, color: color ?? AppColors.blackColor, letterSpacing: -0.4),
+ style: TextStyle(
+ fontSize: 18.fSize,
+ fontWeight: isBold ? FontWeight.bold : FontWeight.normal,
+ color: color ?? AppColors.blackColor,
+ letterSpacing: -0.4),
);
Widget toText19({Color? color, bool isBold = false}) => Text(
this,
- style: TextStyle(fontSize: 19.fSize, fontWeight: isBold ? FontWeight.bold : FontWeight.normal, color: color ?? AppColors.blackColor, letterSpacing: -0.4),
+ style: TextStyle(
+ fontSize: 19.fSize,
+ fontWeight: isBold ? FontWeight.bold : FontWeight.normal,
+ color: color ?? AppColors.blackColor,
+ letterSpacing: -0.4),
);
Widget toText20({Color? color, bool isBold = false}) => Text(
this,
- style: TextStyle(fontSize: 20.fSize, fontWeight: isBold ? FontWeight.bold : FontWeight.normal, color: color ?? AppColors.blackColor, letterSpacing: -0.4),
+ style: TextStyle(
+ fontSize: 20.fSize,
+ fontWeight: isBold ? FontWeight.bold : FontWeight.normal,
+ color: color ?? AppColors.blackColor,
+ letterSpacing: -0.4),
);
Widget toText21({Color? color, bool isBold = false, FontWeight? weight, int? maxlines}) => Text(
this,
maxLines: maxlines,
- style: TextStyle(color: color ?? AppColors.blackColor, fontSize: 21.fSize, letterSpacing: -0.4, fontWeight: weight ?? (isBold ? FontWeight.w600 : FontWeight.normal)),
+ style: TextStyle(color: color ?? AppColors.blackColor, fontSize: 21.fSize, letterSpacing: -0.4, fontWeight: weight ?? (isBold ? FontWeight.bold : FontWeight.normal)),
);
Widget toText22({Color? color, bool isBold = false, bool isCenter = false}) => Text(
this,
textAlign: isCenter ? TextAlign.center : null,
- style: TextStyle(height: 1, color: color ?? AppColors.blackColor, fontSize: 22.fSize, letterSpacing: -0.4, fontWeight: isBold ? FontWeight.w600 : FontWeight.normal),
+ style: TextStyle(
+ height: 1,
+ color: color ?? AppColors.blackColor,
+ fontSize: 22.fSize,
+ letterSpacing: -0.4,
+ fontWeight: isBold ? FontWeight.bold : FontWeight.normal),
);
Widget toText24({Color? color, bool isBold = false, bool isCenter = false}) => Text(
this,
textAlign: isCenter ? TextAlign.center : null,
- style: TextStyle(height: 23 / 24, color: color ?? AppColors.blackColor, fontSize: 24.fSize, letterSpacing: -0.4, fontWeight: isBold ? FontWeight.w600 : FontWeight.normal),
- );
-
- Widget toText26({Color? color, bool isBold = false, bool isCenter = false, double height = 23/26}) => Text(
- this,
- textAlign: isCenter ? TextAlign.center : null,
- style: TextStyle(height: height, color: color ?? AppColors.blackColor, fontSize: 26.fSize, letterSpacing: -1, fontWeight: isBold ? FontWeight.w600 : FontWeight.normal),
- );
-
- Widget toText28({Color? color, bool isBold = false, bool isCenter = false, TextScaler? textScaler}) => Text(
- this,
- textAlign: isCenter ? TextAlign.center : null,
- textScaler: textScaler,
- style: TextStyle(height: 40 / 28, color: color ?? AppColors.blackColor, fontSize: 28.fSize, letterSpacing: -1, fontWeight: isBold ? FontWeight.w600 : FontWeight.normal),
+ style: TextStyle(
+ height: 23 / 24,
+ color: color ?? AppColors.blackColor,
+ fontSize: 24.fSize,
+ letterSpacing: -0.4,
+ fontWeight: isBold ? FontWeight.bold : FontWeight.normal),
);
Widget toText32({Color? color, bool isBold = false, bool isCenter = false}) => Text(
this,
textAlign: isCenter ? TextAlign.center : null,
- style: TextStyle(height: 32 / 32, color: color ?? AppColors.blackColor, fontSize: 32.fSize, letterSpacing: -0.4, fontWeight: isBold ? FontWeight.w600 : FontWeight.normal),
- );
-
- Widget toText36({Color? color, bool isBold = false, bool isCenter = false}) => Text(
- this,
- textAlign: isCenter ? TextAlign.center : null,
- style: TextStyle(height: 47 / 36, color: color ?? AppColors.blackColor, fontSize: 36.fSize, letterSpacing: -1, fontWeight: isBold ? FontWeight.w600 : FontWeight.normal),
+ style: TextStyle(
+ height: 32 / 32,
+ color: color ?? AppColors.blackColor,
+ fontSize: 32.fSize,
+ letterSpacing: -0.4,
+ fontWeight: isBold ? FontWeight.bold : FontWeight.normal),
);
Widget toText44({Color? color, bool isBold = false}) => Text(
this,
- style: TextStyle(height: 32 / 32, color: color ?? AppColors.blackColor, fontSize: 44.fSize, letterSpacing: -0.4, fontWeight: isBold ? FontWeight.w600 : FontWeight.normal),
+ style: TextStyle(height: 32 / 32, color: color ?? AppColors.blackColor, fontSize: 44.fSize, letterSpacing: -0.4, fontWeight: isBold ? FontWeight.bold : FontWeight.normal),
);
Widget toSectionHeading({String upperHeading = "", String lowerHeading = ""}) {
@@ -284,7 +340,9 @@ extension EmailValidator on String {
}
bool isValidEmail() {
- return RegExp(r'^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$').hasMatch(this);
+ return RegExp(
+ r'^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$')
+ .hasMatch(this);
}
String toFormattedDate() {
diff --git a/lib/features/insurance/insurance_repo.dart b/lib/features/insurance/insurance_repo.dart
new file mode 100644
index 0000000..a5c624f
--- /dev/null
+++ b/lib/features/insurance/insurance_repo.dart
@@ -0,0 +1,77 @@
+import 'package:dartz/dartz.dart';
+import 'package:hmg_patient_app_new/core/api/api_client.dart';
+import 'package:hmg_patient_app_new/core/api_consts.dart';
+import 'package:hmg_patient_app_new/core/common_models/generic_api_model.dart';
+import 'package:hmg_patient_app_new/core/exceptions/api_failure.dart';
+import 'package:hmg_patient_app_new/features/insurance/models/resp_models/patient_insurance_details_response_model.dart';
+import 'package:hmg_patient_app_new/services/logger_service.dart';
+
+abstract class InsuranceRepo {
+ Future>>> getPatientInsuranceDetails({required String patientId});
+}
+
+class InsuranceRepoImp implements InsuranceRepo {
+ final ApiClient apiClient;
+ final LoggerService loggerService;
+
+ InsuranceRepoImp({required this.loggerService, required this.apiClient});
+
+ @override
+ Future>>> getPatientInsuranceDetails({required String patientId}) async {
+ final mapDevice = {
+ "isDentalAllowedBackend": false,
+ "VersionID": 50.0,
+ "Channel": 3,
+ "LanguageID": 2,
+ "IPAdress": "10.20.10.20",
+ "generalid": "Cs2020@2016\$2958",
+ "Latitude": 0.0,
+ "Longitude": 0.0,
+ "DeviceTypeID": 1,
+ "PatientType": 1,
+ "PatientTypeID": 1,
+ "TokenID": "@dm!n",
+ "PatientID": "3628599",
+ "PatientOutSA": "0",
+ "SessionID": "03478TYC02N80874CTYN04883475!?"
+ };
+
+ try {
+ GenericApiModel>? apiResponse;
+ Failure? failure;
+ await apiClient.post(
+ GET_PAtIENTS_INSURANCE,
+ body: mapDevice,
+ onFailure: (error, statusCode, {messageStatus, failureType}) {
+ failure = failureType;
+ },
+ onSuccess: (response, statusCode, {messageStatus}) {
+ try {
+ final list = response['List_PatientInsuranceCard'];
+ if (list == null || list.isEmpty) {
+ throw Exception("insurance list is empty");
+ }
+
+ final labOrders = list.map((item) => PatientInsuranceDetailsResponseModel.fromJson(item as Map)).toList().cast();
+
+ apiResponse = GenericApiModel>(
+ messageStatus: messageStatus,
+ statusCode: statusCode,
+ errorMessage: null,
+ data: labOrders,
+ );
+ } catch (e) {
+ failure = DataParsingFailure(e.toString());
+ }
+ },
+ );
+ if (failure != null) return Left(failure!);
+ if (apiResponse == null) return Left(ServerFailure("Unknown error"));
+ return Right(apiResponse!);
+ } catch (e) {
+ return Left(UnknownFailure(e.toString()));
+ }
+
+ throw UnimplementedError();
+ }
+}
diff --git a/lib/features/insurance/insurance_view_model.dart b/lib/features/insurance/insurance_view_model.dart
new file mode 100644
index 0000000..545a32a
--- /dev/null
+++ b/lib/features/insurance/insurance_view_model.dart
@@ -0,0 +1,43 @@
+import 'package:flutter/material.dart';
+import 'package:hmg_patient_app_new/features/insurance/insurance_repo.dart';
+import 'package:hmg_patient_app_new/features/insurance/models/resp_models/patient_insurance_details_response_model.dart';
+import 'package:hmg_patient_app_new/features/lab/lab_repo.dart';
+import 'package:hmg_patient_app_new/services/error_handler_service.dart';
+
+class InsuranceViewModel extends ChangeNotifier {
+ bool isInsuranceLoading = false;
+
+ InsuranceRepo insuranceRepo;
+ ErrorHandlerService errorHandlerService;
+
+ List patientInsuranceList = [];
+
+ InsuranceViewModel({required this.insuranceRepo, required this.errorHandlerService});
+
+ initInsuranceProvider() {
+ patientInsuranceList.clear();
+ isInsuranceLoading = true;
+ getPatientInsuranceDetails();
+ notifyListeners();
+ }
+
+ Future getPatientInsuranceDetails({Function(dynamic)? onSuccess, Function(String)? onError}) async {
+ final result = await insuranceRepo.getPatientInsuranceDetails(patientId: "1231755");
+
+ result.fold(
+ (failure) async => await errorHandlerService.handleError(failure: failure),
+ (apiResponse) {
+ if (apiResponse.messageStatus == 2) {
+ // dialogService.showErrorDialog(message: apiResponse.errorMessage!, onOkPressed: () {});
+ } else if (apiResponse.messageStatus == 1) {
+ patientInsuranceList = apiResponse.data!;
+ isInsuranceLoading = false;
+ notifyListeners();
+ if (onSuccess != null) {
+ onSuccess(apiResponse);
+ }
+ }
+ },
+ );
+ }
+}
diff --git a/lib/features/insurance/models/resp_models/patient_insurance_details_response_model.dart b/lib/features/insurance/models/resp_models/patient_insurance_details_response_model.dart
new file mode 100644
index 0000000..b734abc
--- /dev/null
+++ b/lib/features/insurance/models/resp_models/patient_insurance_details_response_model.dart
@@ -0,0 +1,96 @@
+class PatientInsuranceDetailsResponseModel {
+ String? setupID;
+ int? projectID;
+ bool? isActive;
+ int? patientID;
+ int? companyID;
+ int? subCategoryID;
+ dynamic companyType;
+ String? patientCardID;
+ String? cardValidTo;
+ int? patientCreditLimit;
+ String? subPolicyNo;
+ String? companyName;
+ String? companyNameN;
+ String? subCategoryDesc;
+ dynamic subCategoryDescN;
+ bool? isElectronicClaim;
+ String? subCategoryValidTo;
+ dynamic groupID;
+ String? groupName;
+ dynamic groupNameN;
+ String? insurancePolicyNo;
+
+ PatientInsuranceDetailsResponseModel(
+ {this.setupID,
+ this.projectID,
+ this.isActive,
+ this.patientID,
+ this.companyID,
+ this.subCategoryID,
+ this.companyType,
+ this.patientCardID,
+ this.cardValidTo,
+ this.patientCreditLimit,
+ this.subPolicyNo,
+ this.companyName,
+ this.companyNameN,
+ this.subCategoryDesc,
+ this.subCategoryDescN,
+ this.isElectronicClaim,
+ this.subCategoryValidTo,
+ this.groupID,
+ this.groupName,
+ this.groupNameN,
+ this.insurancePolicyNo});
+
+ PatientInsuranceDetailsResponseModel.fromJson(Map json) {
+ setupID = json['SetupID'];
+ projectID = json['ProjectID'];
+ isActive = json['IsActive'];
+ patientID = json['PatientID'];
+ companyID = json['CompanyID'];
+ subCategoryID = json['SubCategoryID'];
+ companyType = json['CompanyType'];
+ patientCardID = json['PatientCardID'];
+ cardValidTo = json['CardValidTo'];
+ patientCreditLimit = json['PatientCreditLimit'];
+ subPolicyNo = json['SubPolicyNo'];
+ companyName = json['CompanyName'];
+ companyNameN = json['CompanyNameN'];
+ subCategoryDesc = json['SubCategoryDesc'];
+ subCategoryDescN = json['SubCategoryDescN'];
+ isElectronicClaim = json['IsElectronicClaim'];
+ subCategoryValidTo = json['SubCategoryValidTo'];
+ groupID = json['GroupID'];
+ groupName = json['GroupName'];
+ groupNameN = json['GroupNameN'];
+ insurancePolicyNo = json['InsurancePolicyNo'];
+ }
+
+ Map toJson() {
+ final Map data = new Map();
+ data['SetupID'] = this.setupID;
+ data['ProjectID'] = this.projectID;
+ data['IsActive'] = this.isActive;
+ data['PatientID'] = this.patientID;
+ data['CompanyID'] = this.companyID;
+ data['SubCategoryID'] = this.subCategoryID;
+ data['CompanyType'] = this.companyType;
+ data['PatientCardID'] = this.patientCardID;
+ data['CardValidTo'] = this.cardValidTo;
+ data['PatientCreditLimit'] = this.patientCreditLimit;
+ data['SubPolicyNo'] = this.subPolicyNo;
+ data['CompanyName'] = this.companyName;
+ data['CompanyNameN'] = this.companyNameN;
+ data['SubCategoryDesc'] = this.subCategoryDesc;
+ data['SubCategoryDescN'] = this.subCategoryDescN;
+ data['IsElectronicClaim'] = this.isElectronicClaim;
+ data['SubCategoryValidTo'] = this.subCategoryValidTo;
+ data['GroupID'] = this.groupID;
+ data['GroupName'] = this.groupName;
+ data['GroupNameN'] = this.groupNameN;
+ data['InsurancePolicyNo'] = this.insurancePolicyNo;
+ return data;
+ }
+}
diff --git a/lib/features/lab/lab_view_model.dart b/lib/features/lab/lab_view_model.dart
index acd87eb..115b28d 100644
--- a/lib/features/lab/lab_view_model.dart
+++ b/lib/features/lab/lab_view_model.dart
@@ -12,6 +12,10 @@ class LabViewModel extends ChangeNotifier {
List patientLabOrders = [];
+ List labSuggestionsList =[];
+
+ get labSuggestions => labSuggestionsList;
+
LabViewModel({required this.labRepo, required this.errorHandlerService});
initLabProvider() {
@@ -42,4 +46,8 @@ class LabViewModel extends ChangeNotifier {
},
);
}
+
+ filterSuggestions(){
+
+ }
}
diff --git a/lib/features/prescriptions/models/resp_models/prescription_detail_response_model.dart b/lib/features/prescriptions/models/resp_models/prescription_detail_response_model.dart
index 3ca8396..b35cfef 100644
--- a/lib/features/prescriptions/models/resp_models/prescription_detail_response_model.dart
+++ b/lib/features/prescriptions/models/resp_models/prescription_detail_response_model.dart
@@ -32,6 +32,7 @@ class PrescriptionDetailResponseModel {
String? sKU;
num? scaleOffset;
String? startDate;
+ bool? hasReminder;
PrescriptionDetailResponseModel(
{this.address,
@@ -66,7 +67,8 @@ class PrescriptionDetailResponseModel {
this.route,
this.sKU,
this.scaleOffset,
- this.startDate});
+ this.startDate,
+ this.hasReminder = false});
PrescriptionDetailResponseModel.fromJson(Map json) {
address = json['Address'];
@@ -102,6 +104,7 @@ class PrescriptionDetailResponseModel {
sKU = json['SKU'];
scaleOffset = json['ScaleOffset'];
startDate = json['StartDate'];
+ hasReminder = false;
}
Map toJson() {
diff --git a/lib/features/prescriptions/prescriptions_view_model.dart b/lib/features/prescriptions/prescriptions_view_model.dart
index 23a818e..ff93f84 100644
--- a/lib/features/prescriptions/prescriptions_view_model.dart
+++ b/lib/features/prescriptions/prescriptions_view_model.dart
@@ -43,6 +43,14 @@ class PrescriptionsViewModel extends ChangeNotifier {
notifyListeners();
}
+ setPrescriptionItemReminder(bool value, PrescriptionDetailResponseModel item) {
+ int index = prescriptionDetailsList.indexOf(item);
+ if (index != -1) {
+ prescriptionDetailsList[index].hasReminder = value;
+ notifyListeners();
+ }
+ }
+
setIsSortByClinic(bool value) {
isSortByClinic = value;
if (isSortByClinic) {
diff --git a/lib/generated/locale_keys.g.dart b/lib/generated/locale_keys.g.dart
index 0210e4c..7831616 100644
--- a/lib/generated/locale_keys.g.dart
+++ b/lib/generated/locale_keys.g.dart
@@ -802,5 +802,8 @@ abstract class LocaleKeys {
static const loginByOTP = 'loginByOTP';
static const guest = 'guest';
static const switchAccount = 'switchAccount';
+ static const checkAvailability = 'checkAvailability';
+ static const readInstructions = 'readInstructions';
+ static const searchLabReport = 'searchLabReport';
}
diff --git a/lib/main.dart b/lib/main.dart
index 035c6bf..ce69f5d 100644
--- a/lib/main.dart
+++ b/lib/main.dart
@@ -7,6 +7,7 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:hmg_patient_app_new/core/dependencies.dart';
import 'package:hmg_patient_app_new/features/authentication/authentication_view_model.dart';
+import 'package:hmg_patient_app_new/features/insurance/insurance_view_model.dart';
import 'package:hmg_patient_app_new/features/lab/lab_view_model.dart';
import 'package:hmg_patient_app_new/features/prescriptions/prescriptions_view_model.dart';
import 'package:hmg_patient_app_new/features/radiology/radiology_view_model.dart';
@@ -71,6 +72,12 @@ void main() async {
errorHandlerService: getIt(),
),
),
+ ChangeNotifierProvider(
+ create: (_) => InsuranceViewModel(
+ insuranceRepo: getIt(),
+ errorHandlerService: getIt(),
+ ),
+ ),
ChangeNotifierProvider(
create: (_) => AuthenticationViewModel(
authenticationRepo: getIt(),
diff --git a/lib/presentation/home/landing_page.dart b/lib/presentation/home/landing_page.dart
index a41d3f7..db21b9e 100644
--- a/lib/presentation/home/landing_page.dart
+++ b/lib/presentation/home/landing_page.dart
@@ -18,7 +18,6 @@ import 'package:hmg_patient_app_new/presentation/home/widgets/large_service_card
import 'package:hmg_patient_app_new/presentation/home/widgets/small_service_card.dart';
import 'package:hmg_patient_app_new/presentation/medical_file/medical_file_page.dart';
import 'package:hmg_patient_app_new/theme/colors.dart';
-import 'package:hmg_patient_app_new/widgets/bottom_navigation/bottom_navigation.dart';
import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
import 'package:hmg_patient_app_new/widgets/transitions/fade_page.dart';
import 'package:provider/provider.dart';
@@ -31,6 +30,7 @@ class LandingPage extends StatefulWidget {
}
class _LandingPageState extends State {
+
@override
Widget build(BuildContext context) {
AppState appState = getIt.get();
@@ -272,7 +272,6 @@ class _LandingPageState extends State {
),
),
),
- bottomNavigationBar: BottomNavigation(),
);
}
}
diff --git a/lib/presentation/home/navigation_screen.dart b/lib/presentation/home/navigation_screen.dart
new file mode 100644
index 0000000..152bbd2
--- /dev/null
+++ b/lib/presentation/home/navigation_screen.dart
@@ -0,0 +1,40 @@
+import 'package:flutter/material.dart';
+import 'package:hmg_patient_app_new/presentation/home/landing_page.dart';
+import 'package:hmg_patient_app_new/presentation/medical_file/medical_file_page.dart';
+import 'package:hmg_patient_app_new/widgets/bottom_navigation/bottom_navigation.dart';
+
+class LandingNavigation extends StatefulWidget {
+ const LandingNavigation({super.key});
+
+ @override
+ State createState() => _LandingNavigationState();
+}
+
+class _LandingNavigationState extends State {
+ int _currentIndex = 0;
+ final PageController _pageController = PageController();
+
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ body: PageView(
+ controller: _pageController,
+ physics: const NeverScrollableScrollPhysics(),
+ children: [
+ const LandingPage(),
+ MedicalFilePage(),
+ const LandingPage(),
+ const LandingPage(),
+ const LandingPage(),
+ ],
+ ),
+ bottomNavigationBar: BottomNavigation(
+ currentIndex: _currentIndex,
+ onTap: (index) {
+ setState(() => _currentIndex = index);
+ _pageController.animateToPage(index, duration: const Duration(milliseconds: 300), curve: Curves.easeInOut);
+ },
+ ),
+ );
+ }
+}
diff --git a/lib/presentation/home/widgets/small_service_card.dart b/lib/presentation/home/widgets/small_service_card.dart
index 297ed2b..f988e18 100644
--- a/lib/presentation/home/widgets/small_service_card.dart
+++ b/lib/presentation/home/widgets/small_service_card.dart
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
+import 'package:hmg_patient_app_new/presentation/insurance/insurance_home_page.dart';
import 'package:hmg_patient_app_new/presentation/lab/lab_orders_page.dart';
import 'package:hmg_patient_app_new/presentation/prescriptions/prescriptions_list_page.dart';
import 'package:hmg_patient_app_new/widgets/transitions/fade_page.dart';
@@ -78,6 +79,11 @@ class SmallServiceCard extends StatelessWidget {
);
break;
case "insurance_update":
+ Navigator.of(context).push(
+ FadePage(
+ page: InsuranceHomePage(),
+ ),
+ );
break;
default:
// Handle unknown service
diff --git a/lib/presentation/insurance/insurance_home_page.dart b/lib/presentation/insurance/insurance_home_page.dart
new file mode 100644
index 0000000..eea50c5
--- /dev/null
+++ b/lib/presentation/insurance/insurance_home_page.dart
@@ -0,0 +1,93 @@
+import 'dart:async';
+
+import 'package:easy_localization/easy_localization.dart';
+import 'package:flutter/material.dart';
+import 'package:hmg_patient_app_new/core/app_assets.dart';
+import 'package:hmg_patient_app_new/core/utils/date_util.dart';
+import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
+import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
+import 'package:hmg_patient_app_new/features/insurance/insurance_view_model.dart';
+import 'package:hmg_patient_app_new/generated/locale_keys.g.dart';
+import 'package:hmg_patient_app_new/presentation/insurance/widgets/patient_insurance_card.dart';
+import 'package:hmg_patient_app_new/presentation/lab/search_lab_report.dart';
+import 'package:hmg_patient_app_new/theme/colors.dart';
+import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
+import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
+import 'package:hmg_patient_app_new/widgets/common_bottom_sheet.dart';
+import 'package:hmg_patient_app_new/widgets/shimmer/movies_shimmer_widget.dart';
+import 'package:provider/provider.dart';
+
+class InsuranceHomePage extends StatefulWidget {
+ const InsuranceHomePage({super.key});
+
+ @override
+ State createState() => _InsuranceHomePageState();
+}
+
+class _InsuranceHomePageState extends State {
+ late InsuranceViewModel insuranceViewModel;
+
+ @override
+ void initState() {
+ scheduleMicrotask(() {
+ insuranceViewModel.initInsuranceProvider();
+ });
+ super.initState();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ insuranceViewModel = Provider.of(context);
+ return Scaffold(
+ backgroundColor: AppColors.bgScaffoldColor,
+ appBar: AppBar(
+ title: LocaleKeys.insurance.tr(context: context).toText18(),
+ backgroundColor: AppColors.bgScaffoldColor,
+ ),
+ body: SingleChildScrollView(
+ child: Consumer(builder: (context, insuranceVM, child) {
+ return Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Row(
+ mainAxisAlignment: MainAxisAlignment.spaceBetween,
+ children: [
+ "${LocaleKeys.insurance.tr(context: context)} ${LocaleKeys.updateInsurance.tr(context: context)}".toText24(isBold: true),
+ CustomButton(
+ icon: AppAssets.insurance_history_icon,
+ iconColor: AppColors.primaryRedColor,
+ iconSize: 21.h,
+ text: LocaleKeys.history.tr(context: context),
+ onPressed: () {
+ showCommonBottomSheet(
+ context,
+ child: Container(),
+ callBackFunc: () {},
+ title: "",
+ height: ResponsiveExtension.screenHeight * 0.5,
+ isCloseButtonVisible: false,
+ );
+ },
+ backgroundColor: AppColors.primaryRedColor.withOpacity(0.1),
+ borderColor: AppColors.primaryRedColor.withOpacity(0.0),
+ textColor: AppColors.primaryRedColor,
+ fontSize: 14,
+ fontWeight: FontWeight.w600,
+ borderRadius: 12,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 40.h,
+ ),
+ ],
+ ).paddingSymmetrical(24.h, 24.h),
+ insuranceVM.isInsuranceLoading
+ ? const MoviesShimmerWidget().paddingSymmetrical(24.h, 0)
+ : PatientInsuranceCard(
+ insuranceCardDetailsModel: insuranceVM.patientInsuranceList.first,
+ isInsuranceExpired: DateTime.now().isAfter(DateUtil.convertStringToDate(insuranceVM.patientInsuranceList.first.cardValidTo))),
+ ],
+ );
+ }),
+ ),
+ );
+ }
+}
diff --git a/lib/presentation/insurance/widgets/patient_insurance_card.dart b/lib/presentation/insurance/widgets/patient_insurance_card.dart
new file mode 100644
index 0000000..2701233
--- /dev/null
+++ b/lib/presentation/insurance/widgets/patient_insurance_card.dart
@@ -0,0 +1,133 @@
+import 'package:easy_localization/easy_localization.dart';
+import 'package:flutter/cupertino.dart';
+import 'package:hmg_patient_app_new/core/app_assets.dart';
+import 'package:hmg_patient_app_new/core/utils/date_util.dart';
+import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
+import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
+import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
+import 'package:hmg_patient_app_new/features/insurance/insurance_view_model.dart';
+import 'package:hmg_patient_app_new/features/insurance/models/resp_models/patient_insurance_details_response_model.dart';
+import 'package:hmg_patient_app_new/generated/locale_keys.g.dart';
+import 'package:hmg_patient_app_new/theme/colors.dart';
+import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
+import 'package:provider/provider.dart';
+
+class PatientInsuranceCard extends StatelessWidget {
+ PatientInsuranceCard({super.key, required this.insuranceCardDetailsModel, required this.isInsuranceExpired});
+
+ PatientInsuranceDetailsResponseModel insuranceCardDetailsModel;
+ bool isInsuranceExpired = false;
+
+ late InsuranceViewModel insuranceViewModel;
+
+ @override
+ Widget build(BuildContext context) {
+ insuranceViewModel = Provider.of(context);
+ return Container(
+ width: double.infinity,
+ decoration: RoundedRectangleBorder().toSmoothCornerDecoration(
+ color: AppColors.whiteColor,
+ borderRadius: 24,
+ ),
+ child: Padding(
+ padding: EdgeInsets.all(16.h),
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Row(
+ mainAxisAlignment: MainAxisAlignment.spaceBetween,
+ children: [
+ Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ "Haroon Amjad".toText18(isBold: true),
+ "Policy: ${insuranceCardDetailsModel.insurancePolicyNo}".toText12(isBold: true, color: AppColors.lightGrayColor),
+ ],
+ ),
+ CustomButton(
+ icon: isInsuranceExpired ? AppAssets.cancel_circle_icon : AppAssets.insurance_active_icon,
+ iconColor: isInsuranceExpired ? AppColors.primaryRedColor : AppColors.successColor,
+ iconSize: 13.h,
+ text: isInsuranceExpired ? "Insurance Expired" : "Insurance Active",
+ onPressed: () {},
+ backgroundColor: isInsuranceExpired ? AppColors.primaryRedColor.withOpacity(0.15) : AppColors.successColor.withOpacity(0.15),
+ borderColor: isInsuranceExpired ? AppColors.primaryRedColor.withOpacity(0.01) : AppColors.successColor.withOpacity(0.01),
+ textColor: isInsuranceExpired ? AppColors.primaryRedColor : AppColors.successColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 12,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ SizedBox(height: 12.h),
+ insuranceCardDetailsModel.groupName!.toText12(isBold: true),
+ insuranceCardDetailsModel.companyName!.toText12(isBold: true),
+ SizedBox(height: 8.h),
+ Wrap(
+ direction: Axis.horizontal,
+ spacing: 6.h,
+ runSpacing: 6.h,
+ children: [
+ Row(
+ children: [
+ CustomButton(
+ icon: AppAssets.doctor_calendar_icon,
+ iconColor: AppColors.blackColor,
+ iconSize: 13.h,
+ text: "${LocaleKeys.expiryDate.tr(context: context)} ${DateUtil.formatDateToDate(DateUtil.convertStringToDate(insuranceCardDetailsModel.cardValidTo), false)}",
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 12,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ Row(
+ children: [
+ CustomButton(
+ text: "Patient Card ID: ${insuranceCardDetailsModel.patientCardID}",
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 12,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ ],
+ ),
+ SizedBox(height: 10.h),
+ isInsuranceExpired
+ ? CustomButton(
+ icon: AppAssets.update_insurance_card_icon,
+ iconColor: AppColors.successColor,
+ iconSize: 15.h,
+ text: "${LocaleKeys.updateInsurance.tr(context: context)} ${LocaleKeys.updateInsuranceSubtitle.tr(context: context)}",
+ onPressed: () {},
+ backgroundColor: AppColors.bgGreenColor.withOpacity(0.20),
+ borderColor: AppColors.bgGreenColor.withOpacity(0.0),
+ textColor: AppColors.bgGreenColor,
+ fontSize: 14,
+ fontWeight: FontWeight.w500,
+ borderRadius: 12,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 40.h,
+ )
+ : Container(),
+ ],
+ ),
+ ),
+ ).paddingSymmetrical(24.h, 0.h);
+ }
+}
diff --git a/lib/presentation/lab/lab_orders_page.dart b/lib/presentation/lab/lab_orders_page.dart
index 8a0ce26..e829c93 100644
--- a/lib/presentation/lab/lab_orders_page.dart
+++ b/lib/presentation/lab/lab_orders_page.dart
@@ -5,14 +5,19 @@ import 'package:flutter/material.dart';
import 'package:flutter_staggered_animations/flutter_staggered_animations.dart';
import 'package:hmg_patient_app_new/core/app_assets.dart';
import 'package:hmg_patient_app_new/core/utils/date_util.dart';
+import 'package:hmg_patient_app_new/core/utils/size_config.dart';
import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
import 'package:hmg_patient_app_new/core/utils/utils.dart';
import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
+import 'package:hmg_patient_app_new/features/lab/models/resp_models/patient_lab_orders_response_model.dart';
import 'package:hmg_patient_app_new/generated/locale_keys.g.dart';
import 'package:hmg_patient_app_new/features/lab/lab_view_model.dart';
+import 'package:hmg_patient_app_new/presentation/lab/search_lab_report.dart';
import 'package:hmg_patient_app_new/theme/colors.dart';
+import 'package:hmg_patient_app_new/widgets/bottom_sheet.dart';
import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
+import 'package:hmg_patient_app_new/widgets/common_bottom_sheet.dart';
import 'package:hmg_patient_app_new/widgets/shimmer/movies_shimmer_widget.dart';
import 'package:provider/provider.dart';
@@ -25,7 +30,7 @@ class LabOrdersPage extends StatefulWidget {
class _LabOrdersPageState extends State {
late LabViewModel labProvider;
-
+ List?> labSuggestions = [];
int? expandedIndex;
@override
@@ -57,7 +62,17 @@ class _LabOrdersPageState extends State {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
LocaleKeys.labResults.tr(context: context).toText24(isBold: true),
- Utils.buildSvgWithAssets(icon: AppAssets.search_icon),
+ Utils.buildSvgWithAssets(icon: AppAssets.search_icon).onPress(() {
+ if(model.isLabOrdersLoading){
+ return;
+ } else {
+ labSuggestions = getLabSuggestions(model);
+ showCommonBottomSheet(context, child: SearchLabResultsContent(),
+ callBackFunc: () {},
+ title: LocaleKeys.searchLabReport.tr(),
+ height: ResponsiveExtension.screenHeight,
+ isCloseButtonVisible: true);
+ } }),
],
),
SizedBox(height: 16.h),
@@ -262,4 +277,13 @@ class _LabOrdersPageState extends State {
return "";
}
}
+ getLabSuggestions(LabViewModel model) {
+ if(model.patientLabOrders.isEmpty){
+ return [];
+ }
+ return model.patientLabOrders.map((m) => m.testDetails).toList();
+
+
+ }
+
}
diff --git a/lib/presentation/lab/search_lab_report.dart b/lib/presentation/lab/search_lab_report.dart
new file mode 100644
index 0000000..1c05174
--- /dev/null
+++ b/lib/presentation/lab/search_lab_report.dart
@@ -0,0 +1,116 @@
+import 'package:easy_localization/easy_localization.dart';
+import 'package:flutter/material.dart';
+import 'package:hmg_patient_app_new/core/app_assets.dart';
+import 'package:hmg_patient_app_new/core/app_export.dart';
+import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
+import 'package:hmg_patient_app_new/generated/locale_keys.g.dart';
+import 'package:hmg_patient_app_new/theme/colors.dart';
+import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
+import 'package:hmg_patient_app_new/widgets/input_widget.dart';
+import 'package:sizer/sizer.dart';
+
+class SearchLabResultsContent extends StatelessWidget {
+ const SearchLabResultsContent({super.key});
+
+ final List _chipLabels = const [
+ "Blood Test",
+ "X-Ray",
+ "MRI Scan",
+ "CT Scan",
+ "Ultrasound",
+ "Urine Test",
+ "Allergy Test",
+ "Cholesterol Test",
+ "Diabetes Test",
+ "Thyroid Test",
+ ];
+
+ @override
+ Widget build(BuildContext context) {
+
+ return Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Padding(
+ padding: const EdgeInsets.symmetric(horizontal: 16),
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ TextInputWidget(
+ labelText:"Search lab results",
+ hintText: "Type test name",
+ controller: TextEditingController(),
+ isEnable: true,
+ prefix: null,
+ autoFocus: true,
+ isBorderAllowed: false,
+ padding: EdgeInsets.symmetric(vertical:ResponsiveExtension(10).h, horizontal: ResponsiveExtension(15).h),
+
+ ),
+ SizedBox(height: ResponsiveExtension(20).h),
+ "Suggestions".toText16(isBold: true),
+ const SizedBox(height: 12),
+ ],
+ ),
+ ),
+ Expanded(
+ child: SingleChildScrollView(
+ padding: const EdgeInsets.symmetric(horizontal: 16),
+ child: Wrap(
+ alignment: WrapAlignment.start,
+ spacing: 10,
+ runSpacing: 10,
+ children: _chipLabels
+ .map((label) => SuggestionChip(
+ label: label,
+ onTap: () {},
+ ))
+ .toList(),
+ ),
+ ),
+ ),
+ Container(
+ color: Colors.white,
+ padding: EdgeInsets.all(ResponsiveExtension(20).h),
+ child: CustomButton(
+ text: LocaleKeys.search.tr(),
+ icon: AppAssets.search_icon,
+ iconColor: Colors.white,
+ onPressed: () => Navigator.pop(context),
+ ),
+ ),
+ ],
+ );
+ }
+}
+
+class SuggestionChip extends StatelessWidget {
+ final String label;
+ final bool isSelected;
+ final VoidCallback? onTap;
+
+ const SuggestionChip({
+ super.key,
+ required this.label,
+ this.isSelected = false,
+ this.onTap,
+ });
+
+ @override
+ Widget build(BuildContext context) {
+ return GestureDetector(
+ onTap: onTap, // optional tap callback
+ child: Container(
+ padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 8),
+ decoration: BoxDecoration(
+ color: isSelected ? AppColors.primaryRedColor : AppColors.whiteColor,
+ borderRadius: BorderRadius.circular(8),
+ ),
+ child: label.toText12(
+ color: isSelected ? Colors.white : Colors.black87,
+ fontWeight: FontWeight.w500,
+ ),
+ ),
+ );
+ }
+}
diff --git a/lib/presentation/medical_file/medical_file_page.dart b/lib/presentation/medical_file/medical_file_page.dart
index 9b2265c..4bb5cdb 100644
--- a/lib/presentation/medical_file/medical_file_page.dart
+++ b/lib/presentation/medical_file/medical_file_page.dart
@@ -1,20 +1,28 @@
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:hmg_patient_app_new/core/app_assets.dart';
+import 'package:hmg_patient_app_new/core/utils/date_util.dart';
import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
+import 'package:hmg_patient_app_new/features/insurance/insurance_view_model.dart';
import 'package:hmg_patient_app_new/generated/locale_keys.g.dart';
+import 'package:hmg_patient_app_new/presentation/insurance/widgets/patient_insurance_card.dart';
import 'package:hmg_patient_app_new/presentation/medical_file/widgets/medical_file_card.dart';
import 'package:hmg_patient_app_new/theme/colors.dart';
import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
import 'package:hmg_patient_app_new/widgets/input_widget.dart';
+import 'package:hmg_patient_app_new/widgets/shimmer/movies_shimmer_widget.dart';
+import 'package:provider/provider.dart';
class MedicalFilePage extends StatelessWidget {
- const MedicalFilePage({super.key});
+ MedicalFilePage({super.key});
+
+ late InsuranceViewModel insuranceViewModel;
@override
Widget build(BuildContext context) {
+ insuranceViewModel = Provider.of(context);
return Scaffold(
backgroundColor: AppColors.bgScaffoldColor,
appBar: AppBar(
@@ -161,101 +169,13 @@ class MedicalFilePage extends StatelessWidget {
),
SizedBox(height: 16.h),
//Insurance Tab Data
- Container(
- // height: 150.h,
- width: double.infinity,
- decoration: RoundedRectangleBorder().toSmoothCornerDecoration(
- color: AppColors.whiteColor,
- borderRadius: 24,
- ),
- child: Padding(
- padding: EdgeInsets.all(16.h),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- "Haroon Amjad".toText18(isBold: true),
- "Policy: 223123345".toText12(isBold: true, color: AppColors.lightGrayColor),
- ],
- ),
- CustomButton(
- icon: AppAssets.cross_circle,
- iconColor: AppColors.primaryRedColor,
- iconSize: 13.h,
- text: "Insurance Expired",
- onPressed: () {},
- backgroundColor: AppColors.primaryRedColor.withOpacity(0.1),
- borderColor: AppColors.primaryRedColor.withOpacity(0.0),
- textColor: AppColors.primaryRedColor,
- fontSize: 10,
- fontWeight: FontWeight.w500,
- borderRadius: 12,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- SizedBox(height: 12.h),
- "NCCI".toText12(isBold: true),
- "NC_Dr Sulaiman Al Habib Medical Group".toText12(isBold: true),
- SizedBox(height: 8.h),
- Row(
- children: [
- CustomButton(
- icon: AppAssets.cross_circle,
- iconColor: AppColors.primaryRedColor,
- iconSize: 13.h,
- text: "Expiry: 18 Mar, 2025",
- onPressed: () {},
- backgroundColor: AppColors.primaryRedColor.withOpacity(0.1),
- borderColor: AppColors.primaryRedColor.withOpacity(0.0),
- textColor: AppColors.primaryRedColor,
- fontSize: 10,
- fontWeight: FontWeight.w500,
- borderRadius: 12,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- SizedBox(width: 5.h),
- CustomButton(
- text: "Patient Card ID: 3628599",
- onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 10,
- fontWeight: FontWeight.normal,
- borderRadius: 12,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- SizedBox(height: 10.h),
- CustomButton(
- icon: AppAssets.cross_circle,
- iconColor: AppColors.primaryRedColor,
- iconSize: 13.h,
- text: "${LocaleKeys.updateInsurance.tr(context: context)} ${LocaleKeys.updateInsuranceSubtitle.tr(context: context)}",
- onPressed: () {},
- backgroundColor: AppColors.bgGreenColor.withOpacity(0.20),
- borderColor: AppColors.bgGreenColor.withOpacity(0.0),
- textColor: AppColors.bgGreenColor,
- fontSize: 14,
- fontWeight: FontWeight.w500,
- borderRadius: 12,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 40.h,
- ),
- ],
- ),
- ),
- ),
+ Consumer(builder: (context, insuranceVM, child) {
+ return insuranceVM.isInsuranceLoading
+ ? const MoviesShimmerWidget()
+ : PatientInsuranceCard(
+ insuranceCardDetailsModel: insuranceVM.patientInsuranceList.first,
+ isInsuranceExpired: DateTime.now().isBefore(DateUtil.convertStringToDate(insuranceVM.patientInsuranceList.first.cardValidTo)));
+ }),
SizedBox(height: 10.h),
GridView(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 3, crossAxisSpacing: 13, mainAxisSpacing: 13),
diff --git a/lib/presentation/prescriptions/prescription_detail_page.dart b/lib/presentation/prescriptions/prescription_detail_page.dart
index 0231c67..65dc550 100644
--- a/lib/presentation/prescriptions/prescription_detail_page.dart
+++ b/lib/presentation/prescriptions/prescription_detail_page.dart
@@ -29,6 +29,8 @@ class PrescriptionDetailPage extends StatefulWidget {
class _PrescriptionDetailPageState extends State {
late PrescriptionsViewModel prescriptionsViewModel;
+ bool _isSwitched = false; // Initial state of the switch
+
@override
void initState() {
scheduleMicrotask(() {
@@ -46,267 +48,353 @@ class _PrescriptionDetailPageState extends State {
title: LocaleKeys.prescriptions.tr(context: context).toText18(),
backgroundColor: AppColors.bgScaffoldColor,
),
- body: SingleChildScrollView(
- child: Consumer(builder: (context, prescriptionVM, child) {
- return Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- LocaleKeys.prescriptions.tr(context: context).toText24(isBold: true).paddingSymmetrical(24.h, 0.h),
- SizedBox(height: 24.h),
- Container(
- decoration: RoundedRectangleBorder().toSmoothCornerDecoration(
- color: AppColors.whiteColor,
- borderRadius: 20.h,
- hasShadow: true,
- ),
- child: Padding(
- padding: EdgeInsets.all(16.h),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- Image.network(
- widget.prescriptionsResponseModel.doctorImageURL!,
- width: 24.h,
- height: 24.h,
- fit: BoxFit.fill,
- ).circle(100),
- SizedBox(width: 8.h),
- Expanded(child: widget.prescriptionsResponseModel.doctorName!.toText16(isBold: true)),
- ],
- ),
- SizedBox(height: 16.h),
- Wrap(
- direction: Axis.horizontal,
- spacing: 6.h,
- runSpacing: 6.h,
- children: [
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- icon: AppAssets.doctor_calendar_icon,
- iconColor: AppColors.textColor,
- iconSize: 13.h,
- text: DateUtil.formatDateToDate(DateUtil.convertStringToDate(widget.prescriptionsResponseModel.appointmentDate), false),
- onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
- fontWeight: FontWeight.w500,
- borderRadius: 8,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- text: widget.prescriptionsResponseModel.clinicDescription!,
- onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
- fontWeight: FontWeight.w500,
- borderRadius: 8,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- icon: AppAssets.rating_icon,
- iconColor: AppColors.ratingColorYellow,
- iconSize: 13.h,
- text: "Rating: ${widget.prescriptionsResponseModel.decimalDoctorRate}",
- onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
- fontWeight: FontWeight.w500,
- borderRadius: 8,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- text: widget.prescriptionsResponseModel.name!,
- onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
- fontWeight: FontWeight.w500,
- borderRadius: 8,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- ],
+ body: Column(
+ children: [
+ Expanded(
+ child: SingleChildScrollView(
+ child: Consumer(builder: (context, prescriptionVM, child) {
+ return Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ LocaleKeys.prescriptions.tr(context: context).toText24(isBold: true).paddingSymmetrical(24.h, 0.h),
+ SizedBox(height: 24.h),
+ Container(
+ decoration: RoundedRectangleBorder().toSmoothCornerDecoration(
+ color: AppColors.whiteColor,
+ borderRadius: 20.h,
+ hasShadow: true,
),
- ],
- ),
- ),
- ).paddingSymmetrical(24.h, 0.h),
- SizedBox(height: 16.h),
- ListView.builder(
- shrinkWrap: true,
- physics: NeverScrollableScrollPhysics(),
- itemCount: prescriptionVM.isPrescriptionsDetailsLoading ? 5 : prescriptionVM.prescriptionDetailsList.length,
- itemBuilder: (context, index) {
- return prescriptionVM.isPrescriptionsDetailsLoading
- ? const MoviesShimmerWidget()
- : AnimationConfiguration.staggeredList(
- position: index,
- duration: const Duration(milliseconds: 500),
- child: SlideAnimation(
- verticalOffset: 100.0,
- child: FadeInAnimation(
- child: AnimatedContainer(
- duration: Duration(milliseconds: 300),
- curve: Curves.easeInOut,
- margin: EdgeInsets.symmetric(vertical: 8.h),
- decoration: RoundedRectangleBorder().toSmoothCornerDecoration(color: AppColors.whiteColor, borderRadius: 20.h, hasShadow: true),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
+ child: Padding(
+ padding: EdgeInsets.all(16.h),
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Image.network(
+ widget.prescriptionsResponseModel.doctorImageURL!,
+ width: 24.h,
+ height: 24.h,
+ fit: BoxFit.fill,
+ ).circle(100),
+ SizedBox(width: 8.h),
+ Expanded(child: widget.prescriptionsResponseModel.doctorName!.toText16(isBold: true)),
+ ],
+ ),
+ SizedBox(height: 16.h),
+ Wrap(
+ direction: Axis.horizontal,
+ spacing: 6.h,
+ runSpacing: 6.h,
+ children: [
+ Row(
+ mainAxisSize: MainAxisSize.min,
children: [
- Padding(
- padding: EdgeInsets.all(16.h),
- child: Container(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Row(
- mainAxisSize: MainAxisSize.min,
- mainAxisAlignment: MainAxisAlignment.start,
- children: [
- Image.network(
- prescriptionVM.prescriptionDetailsList[index].imageSRCUrl!,
- width: 60.h,
- height: 60.h,
- fit: BoxFit.fill,
- ).circle(100),
- SizedBox(width: 8.h),
- Expanded(
- child: prescriptionVM.prescriptionDetailsList[index].itemDescription!.toText16(isBold: true, maxlines: 2),
- ),
- ],
- ),
- SizedBox(height: 16.h),
- Wrap(
- direction: Axis.horizontal,
- spacing: 6.h,
- runSpacing: 6.h,
- children: [
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- text: "${LocaleKeys.route.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].route}",
- onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
- fontWeight: FontWeight.w500,
- borderRadius: 8,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- text: "${LocaleKeys.frequency.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].frequency}",
- onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
- fontWeight: FontWeight.w500,
- borderRadius: 8,
- padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
- ),
- ],
- ),
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- text: "${LocaleKeys.dailyDoses.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].doseDailyQuantity}",
+ CustomButton(
+ icon: AppAssets.doctor_calendar_icon,
+ iconColor: AppColors.textColor,
+ iconSize: 13.h,
+ text: DateUtil.formatDateToDate(DateUtil.convertStringToDate(widget.prescriptionsResponseModel.appointmentDate), false),
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ CustomButton(
+ text: widget.prescriptionsResponseModel.clinicDescription!,
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ CustomButton(
+ icon: AppAssets.rating_icon,
+ iconColor: AppColors.ratingColorYellow,
+ iconSize: 13.h,
+ text: "Rating: ${widget.prescriptionsResponseModel.decimalDoctorRate}",
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ CustomButton(
+ text: widget.prescriptionsResponseModel.name!,
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ ],
+ ),
+ ],
+ ),
+ ),
+ ).paddingSymmetrical(24.h, 0.h),
+ SizedBox(height: 16.h),
+ ListView.builder(
+ shrinkWrap: true,
+ physics: NeverScrollableScrollPhysics(),
+ itemCount: prescriptionVM.isPrescriptionsDetailsLoading ? 5 : prescriptionVM.prescriptionDetailsList.length,
+ itemBuilder: (context, index) {
+ return prescriptionVM.isPrescriptionsDetailsLoading
+ ? const MoviesShimmerWidget()
+ : AnimationConfiguration.staggeredList(
+ position: index,
+ duration: const Duration(milliseconds: 500),
+ child: SlideAnimation(
+ verticalOffset: 100.0,
+ child: FadeInAnimation(
+ child: AnimatedContainer(
+ duration: Duration(milliseconds: 300),
+ curve: Curves.easeInOut,
+ margin: EdgeInsets.symmetric(vertical: 8.h),
+ decoration: RoundedRectangleBorder().toSmoothCornerDecoration(color: AppColors.whiteColor, borderRadius: 20.h, hasShadow: true),
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ SizedBox(height: 16.h),
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ mainAxisAlignment: MainAxisAlignment.start,
+ children: [
+ Image.network(
+ prescriptionVM.prescriptionDetailsList[index].imageThumbUrl!,
+ width: 60.h,
+ height: 60.h,
+ fit: BoxFit.fill,
+ ).circle(100),
+ SizedBox(width: 8.h),
+ Expanded(
+ child: prescriptionVM.prescriptionDetailsList[index].itemDescription!.toText16(isBold: true, maxlines: 2),
+ ),
+ ],
+ ).paddingSymmetrical(16.h, 0.h),
+ SizedBox(height: 16.h),
+ Wrap(
+ direction: Axis.horizontal,
+ spacing: 6.h,
+ runSpacing: 6.h,
+ children: [
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ CustomButton(
+ text: "${LocaleKeys.route.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].route}",
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ CustomButton(
+ text: "${LocaleKeys.frequency.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].frequency}",
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ CustomButton(
+ text: "${LocaleKeys.dailyDoses.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].doseDailyQuantity}",
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ CustomButton(
+ text: "${LocaleKeys.days.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].days}",
+ onPressed: () {},
+ backgroundColor: AppColors.greyColor,
+ borderColor: AppColors.greyColor,
+ textColor: AppColors.blackColor,
+ fontSize: 10,
+ fontWeight: FontWeight.w500,
+ borderRadius: 8,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 30.h,
+ ),
+ ],
+ ),
+ ],
+ ).paddingSymmetrical(16.h, 0.h),
+ SizedBox(height: 8.h),
+ Row(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Utils.buildSvgWithAssets(icon: AppAssets.prescription_remarks_icon, width: 18.h, height: 18.h),
+ SizedBox(width: 9.h),
+ Expanded(child: "${LocaleKeys.remarks.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].remarks!}".toText10(isBold: true)),
+ ],
+ ).paddingSymmetrical(16.h, 0.h),
+ SizedBox(height: 14.h),
+ Divider(color: AppColors.borderOnlyColor.withValues(alpha: 0.05), height: 1.h),
+ SizedBox(height: 14.h),
+ Row(
+ mainAxisSize: MainAxisSize.max,
+ children: [
+ Utils.buildSvgWithAssets(icon: AppAssets.prescription_reminder_icon, width: 35.h, height: 35.h),
+ SizedBox(width: 8.h),
+ Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ LocaleKeys.setReminder.tr(context: context).toText13(isBold: true),
+ "Notify me before the consumption time".toText10(color: AppColors.textColorLight),
+ ],
+ ),
+ SizedBox(width: 12.h),
+ Switch(
+ activeColor: AppColors.successColor,
+ value: prescriptionVM.prescriptionDetailsList[index].hasReminder!,
+ onChanged: (newValue) {
+ setState(() {
+ prescriptionVM.setPrescriptionItemReminder(newValue, prescriptionVM.prescriptionDetailsList[index]);
+ });
+ },
+ ),
+ ],
+ ).paddingSymmetrical(16.h, 0.h),
+ SizedBox(height: 14.h),
+ Divider(color: AppColors.borderOnlyColor.withValues(alpha: 0.05), height: 1.h),
+ Row(
+ children: [
+ Expanded(
+ child: CustomButton(
+ text: LocaleKeys.checkAvailability.tr(context: context),
onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
+ backgroundColor: AppColors.primaryRedColor.withOpacity(0.1),
+ borderColor: AppColors.primaryRedColor.withOpacity(0.0),
+ textColor: AppColors.primaryRedColor,
+ fontSize: 13,
fontWeight: FontWeight.w500,
- borderRadius: 8,
+ borderRadius: 12,
padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
+ height: 40.h,
),
- ],
- ),
- Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- CustomButton(
- text: "${LocaleKeys.days.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].days}",
+ ),
+ SizedBox(width: 16.h),
+ Expanded(
+ child: CustomButton(
+ text: LocaleKeys.readInstructions.tr(context: context),
onPressed: () {},
- backgroundColor: AppColors.greyColor,
- borderColor: AppColors.greyColor,
- textColor: AppColors.blackColor,
- fontSize: 12,
+ backgroundColor: AppColors.primaryRedColor,
+ borderColor: AppColors.primaryRedColor,
+ textColor: AppColors.whiteColor,
+ fontSize: 13,
fontWeight: FontWeight.w500,
- borderRadius: 8,
+ borderRadius: 12,
padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
- height: 30.h,
+ height: 40.h,
),
- ],
- ),
- ],
- ),
- SizedBox(height: 8.h),
- Row(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Utils.buildSvgWithAssets(icon: AppAssets.prescription_remarks_icon, width: 18.h, height: 18.h),
- SizedBox(width: 9.h),
- Expanded(child: "${LocaleKeys.remarks.tr(context: context)}: ${prescriptionVM.prescriptionDetailsList[index].remarks!}".toText10(isBold: true)),
- ],
- )
- ],
- ),
+ ),
+ ],
+ ).paddingSymmetrical(16.h, 16.h),
+ ],
+ )
+ ],
),
- )
- ],
+ ),
+ ),
),
- ),
- ),
- ),
- );
- },
- ).paddingSymmetrical(24.h, 0.h),
- ],
- );
- }),
+ );
+ },
+ ).paddingSymmetrical(24.h, 0.h),
+ ],
+ );
+ }),
+ ),
+ ),
+ Container(
+ decoration: RoundedRectangleBorder().toSmoothCornerDecoration(
+ color: AppColors.whiteColor,
+ borderRadius: 24.h,
+ hasShadow: true,
+ ),
+ child: CustomButton(
+ text: widget.prescriptionsResponseModel.isHomeMedicineDeliverySupported! ? LocaleKeys.resendOrder.tr(context: context) : LocaleKeys.prescriptionDeliveryError.tr(context: context),
+ onPressed: () {},
+ backgroundColor: widget.prescriptionsResponseModel.isHomeMedicineDeliverySupported! ? AppColors.successColor : AppColors.greyF7Color,
+ borderColor: AppColors.successColor.withOpacity(0.01),
+ textColor: widget.prescriptionsResponseModel.isHomeMedicineDeliverySupported! ? AppColors.whiteColor : AppColors.textColor.withOpacity(0.35),
+ fontSize: 16,
+ fontWeight: FontWeight.w500,
+ borderRadius: 12,
+ padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
+ height: 50.h,
+ icon: AppAssets.prescription_refill_icon,
+ iconColor: widget.prescriptionsResponseModel.isHomeMedicineDeliverySupported! ? AppColors.whiteColor : AppColors.textColor.withOpacity(0.35),
+ iconSize: 20.h,
+ ).paddingSymmetrical(24.h, 24.h),
+ ),
+ ],
),
);
}
diff --git a/lib/presentation/prescriptions/prescriptions_list_page.dart b/lib/presentation/prescriptions/prescriptions_list_page.dart
index 4aa1a1b..9574f28 100644
--- a/lib/presentation/prescriptions/prescriptions_list_page.dart
+++ b/lib/presentation/prescriptions/prescriptions_list_page.dart
@@ -196,7 +196,7 @@ class _PrescriptionsListPageState extends State {
backgroundColor: AppColors.greyColor,
borderColor: AppColors.greyColor,
textColor: AppColors.blackColor,
- fontSize: 12,
+ fontSize: 10,
fontWeight: FontWeight.w500,
borderRadius: 8,
padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
@@ -209,7 +209,7 @@ class _PrescriptionsListPageState extends State {
backgroundColor: AppColors.greyColor,
borderColor: AppColors.greyColor,
textColor: AppColors.blackColor,
- fontSize: 12,
+ fontSize: 10,
fontWeight: FontWeight.w500,
borderRadius: 8,
padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
diff --git a/lib/splashPage.dart b/lib/splashPage.dart
index bc3e542..6136d22 100644
--- a/lib/splashPage.dart
+++ b/lib/splashPage.dart
@@ -11,6 +11,7 @@ import 'package:hmg_patient_app_new/core/app_assets.dart';
import 'package:hmg_patient_app_new/core/utils/utils.dart';
// import 'package:hmg_patient_app_new/presentation/authantication/login.dart';
import 'package:hmg_patient_app_new/presentation/home/landing_page.dart';
+import 'package:hmg_patient_app_new/presentation/home/navigation_screen.dart';
import 'package:hmg_patient_app_new/theme/colors.dart';
import 'package:hmg_patient_app_new/widgets/transitions/fade_page.dart';
import 'package:provider/provider.dart';
@@ -37,7 +38,7 @@ class _SplashScreenState extends State {
LocalNotification.init(onNotificationClick: (payload) {});
Navigator.of(context).pushReplacement(
FadePage(
- page: LandingPage(),
+ page: LandingNavigation(),
// page: LoginScreen(),
),
);
diff --git a/lib/theme/colors.dart b/lib/theme/colors.dart
index 166783d..5cb9ced 100644
--- a/lib/theme/colors.dart
+++ b/lib/theme/colors.dart
@@ -28,6 +28,7 @@ class AppColors {
static const Color bgRedLightColor = Color(0xFFFEE9EA);
static const Color bgGreenColor = Color(0xFF18C273);
static const Color textColor = Color(0xFF2E3039);
+ static const Color textColorLight = Color(0xFF5E5E5E);
static const Color borderOnlyColor = Color(0xFF2E3039);
static const Color dividerColor = Color(0xFFD2D2D2);
static const Color warningColorYellow = Color(0xFFF4A308);
diff --git a/lib/widgets/bottom_navigation/bottom_navigation.dart b/lib/widgets/bottom_navigation/bottom_navigation.dart
index a052bc6..7f45464 100644
--- a/lib/widgets/bottom_navigation/bottom_navigation.dart
+++ b/lib/widgets/bottom_navigation/bottom_navigation.dart
@@ -1,59 +1,103 @@
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:hmg_patient_app_new/core/app_assets.dart';
+import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
import 'package:hmg_patient_app_new/core/utils/utils.dart';
+import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
import 'package:hmg_patient_app_new/generated/locale_keys.g.dart';
import 'package:hmg_patient_app_new/theme/colors.dart';
class BottomNavigation extends StatelessWidget {
- const BottomNavigation({super.key});
+ final int currentIndex;
+ final ValueChanged onTap;
+
+ const BottomNavigation({
+ super.key,
+ required this.currentIndex,
+ required this.onTap,
+ });
@override
Widget build(BuildContext context) {
- return Container(
- padding: const EdgeInsets.symmetric(vertical: 12),
- decoration: const BoxDecoration(
- color: Colors.white,
- border: Border(
- top: BorderSide(color: AppColors.bottomNAVBorder, width: 0.5),
- ),
-
+ final items = [
+ BottomNavItem(icon: AppAssets.homeBottom, label: LocaleKeys.home.tr()),
+ BottomNavItem(icon: AppAssets.myFilesBottom, label: LocaleKeys.myFiles.tr()),
+ BottomNavItem(
+ icon: AppAssets.bookAppoBottom,
+ label: LocaleKeys.appointment.tr(),
+ iconSize: 27,
+ isSpecial: true,
),
+ BottomNavItem(icon: AppAssets.toDoBottom, label: LocaleKeys.todoList.tr()),
+ BottomNavItem(icon: AppAssets.servicesBottom, label: LocaleKeys.services2.tr()),
+ ];
+
+ return Container(
+ decoration: _containerDecoration,
+ padding: _containerPadding,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
- children: [
- _buildNavItem(AppAssets.homeBottom, LocaleKeys.home.tr()),
- _buildNavItem(AppAssets.myFilesBottom, LocaleKeys.myFiles.tr()),
- _buildNavItem(AppAssets.bookAppoBottom, LocaleKeys.appointment.tr(), iconSize: 32),
- _buildNavItem(AppAssets.toDoBottom, LocaleKeys.todoList.tr()),
- _buildNavItem(AppAssets.servicesBottom, LocaleKeys.services2.tr()),
- ],
+ children: List.generate(
+ items.length,
+ (index) => _buildNavItem(items[index], index),
+ ),
),
);
}
- Widget _buildNavItem(String iconName, String label,{ double iconSize = 24}) {
- return Column(
- mainAxisSize: MainAxisSize.min,
- children: [
- Container(
- padding: const EdgeInsets.all(10),
- child: Utils.buildSvgWithAssets(
- icon: iconName,
- height: iconSize,
- width: iconSize
- ),
- ),
- // const SizedBox(height: 4),
- Text(
- label,
- style: TextStyle(
- fontSize: 13,
- fontWeight: FontWeight.w500,
- color: Colors.black87,
+ Widget _buildNavItem(BottomNavItem item, int index) {
+ final bool isSelected = currentIndex == index;
+
+ return GestureDetector(
+ onTap: () => onTap(index),
+ behavior: HitTestBehavior.opaque,
+ child: Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Center(
+ child: Utils.buildSvgWithAssets(
+ icon: item.icon,
+ height: item.iconSize.h,
+ width: item.iconSize.h,
+ // iconColor: isSelected ? Colors.black87 : Colors.black87,
+ ),
+ ),
+ const SizedBox(height: 10),
+ item.label.toText12(
+ fontWeight:FontWeight.w500,
+ // color: Colors.black87,
+ // textAlign: TextAlign.center,
),
- ),
- ],
+ SizedBox(height: item.isSpecial ? 5:0 )
+ ],
+
+ ),
);
}
}
+
+class BottomNavItem {
+ final String icon;
+ final String label;
+ final double iconSize;
+ final bool isSpecial;
+
+ const BottomNavItem({
+ required this.icon,
+ required this.label,
+ this.iconSize = 21,
+ this.isSpecial = false,
+ });
+}
+
+// Constants
+const EdgeInsets _containerPadding = EdgeInsets.all(15);
+const BoxDecoration _containerDecoration = BoxDecoration(
+ color: Colors.white,
+ border: Border(
+ top: BorderSide(
+ color: AppColors.bottomNAVBorder,
+ width: 0.5,
+ ),
+ ),
+);
diff --git a/lib/widgets/common_bottom_sheet.dart b/lib/widgets/common_bottom_sheet.dart
new file mode 100644
index 0000000..f3d7425
--- /dev/null
+++ b/lib/widgets/common_bottom_sheet.dart
@@ -0,0 +1,83 @@
+import 'package:flutter/material.dart';
+import 'package:hmg_patient_app_new/core/app_assets.dart';
+import 'package:hmg_patient_app_new/core/app_export.dart';
+import 'package:hmg_patient_app_new/core/utils/utils.dart';
+import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
+import 'package:hmg_patient_app_new/presentation/lab/search_lab_report.dart';
+import 'package:hmg_patient_app_new/theme/colors.dart';
+
+void showCommonBottomSheet(BuildContext context, {required Widget child, required VoidCallback callBackFunc, String? title, required double height, bool isCloseButtonVisible = true}) {
+ showModalBottomSheet(
+ context: context,
+ isScrollControlled: false,
+ showDragHandle: false,
+ backgroundColor: AppColors.scaffoldBgColor,
+ builder: (BuildContext context) {
+ return Container(
+ height: height,
+ decoration: RoundedRectangleBorder().toSmoothCornerDecoration(color: AppColors.scaffoldBgColor, borderRadius: 24.h),
+ child: ButtonSheetContent(
+ title: title!,
+ isCloseButtonVisible: isCloseButtonVisible,
+ child: child,
+ ),
+ );
+ }).then((value) {
+ callBackFunc();
+ });
+}
+
+class ButtonSheetContent extends StatelessWidget {
+ final Widget child;
+ final String title;
+ final bool isCloseButtonVisible;
+
+ const ButtonSheetContent({super.key, required this.child, required this.isCloseButtonVisible, required this.title});
+
+ @override
+ Widget build(BuildContext context) {
+ return Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ // SizedBox(
+ // height: 20.h,
+ // ),
+ Center(
+ child: Container(
+ margin: const EdgeInsets.only(top: 18, bottom: 12),
+ height: 4,
+ width: 40.h,
+ decoration: BoxDecoration(
+ color: Colors.grey[400],
+ borderRadius: BorderRadius.circular(2),
+ ),
+ ),
+ ),
+
+ // Close button
+ isCloseButtonVisible
+ ? Padding(
+ padding: EdgeInsets.symmetric(horizontal: 16),
+ child: Utils.buildSvgWithAssets(icon: AppAssets.closeBottomNav, width: 32, height: 32).onPress(() {
+ Navigator.of(context).pop();
+ }),
+ )
+ : SizedBox(),
+
+ SizedBox(
+ height: 20,
+ ),
+ Padding(
+ padding: EdgeInsets.symmetric(horizontal: 16),
+ child: Text(
+ title,
+ style: TextStyle(fontSize: 27.h, fontWeight: FontWeight.bold),
+ ),
+ ),
+ const SizedBox(height: 16),
+
+ Expanded(child: child)
+ ],
+ );
+ }
+}