diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index fef05b1a..dec59139 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -14,7 +14,8 @@ tools:node="remove" /> + tools:node="remove" /> + @@ -42,7 +43,7 @@ - + diff --git a/lib/presentation/health_calculators_and_converts/health_calculators_page.dart b/lib/presentation/health_calculators_and_converts/health_calculators_page.dart index aff34461..4d685dbe 100644 --- a/lib/presentation/health_calculators_and_converts/health_calculators_page.dart +++ b/lib/presentation/health_calculators_and_converts/health_calculators_page.dart @@ -36,6 +36,7 @@ class _HealthCalculatorsPageState extends State { Widget build(BuildContext context) { DialogService dialogService = getIt.get(); return CollapsingListView( + isLeading: Navigator.canPop(context), title: widget.type == HealthCalConEnum.calculator ? LocaleKeys.healthCalculators.tr(context: context) : LocaleKeys.healthConverters.tr(), child: widget.type == HealthCalConEnum.calculator ? CustomExpandableList( diff --git a/lib/presentation/my_family/widget/family_cards.dart b/lib/presentation/my_family/widget/family_cards.dart index 84406aad..672e4c3e 100644 --- a/lib/presentation/my_family/widget/family_cards.dart +++ b/lib/presentation/my_family/widget/family_cards.dart @@ -437,7 +437,16 @@ class _FamilyCardsState extends State { ); }), SizedBox(width: 4.h), - Utils.buildSvgWithAssets(icon: AppAssets.arrowRight), + Transform.flip( + flipX: getIt.get().isArabic(), + child: Utils.buildSvgWithAssets( + icon: AppAssets.arrowRight, + iconColor: AppColors.blackColor, + width: 22.w, + height: 22.h, + fit: BoxFit.contain, + ) + ), ], ), SizedBox(height: 24.h), diff --git a/pubspec.yaml b/pubspec.yaml index 4d853184..34e04a02 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,8 +2,8 @@ name: hmg_patient_app_new description: "New HMG Patient App" publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 0.0.16+13 -#version: 0.0.1+16 +version: 0.0.19+18 +#version: 0.0.1+18 environment: sdk: ">=3.6.0 <4.0.0"