diff --git a/assets/images/cc_ar.png b/assets/images/cc_ar.png new file mode 100644 index 00000000..e4388ba2 Binary files /dev/null and b/assets/images/cc_ar.png differ diff --git a/assets/images/cc_en.png b/assets/images/cc_en.png new file mode 100644 index 00000000..c11cf5e6 Binary files /dev/null and b/assets/images/cc_en.png differ diff --git a/lib/pages/AlHabibMedicalService/ComprehensiveMedicalCheckup/NewCMC/new_cmc_step_one_page.dart b/lib/pages/AlHabibMedicalService/ComprehensiveMedicalCheckup/NewCMC/new_cmc_step_one_page.dart index 3c1ceea4..39650f3b 100644 --- a/lib/pages/AlHabibMedicalService/ComprehensiveMedicalCheckup/NewCMC/new_cmc_step_one_page.dart +++ b/lib/pages/AlHabibMedicalService/ComprehensiveMedicalCheckup/NewCMC/new_cmc_step_one_page.dart @@ -102,50 +102,51 @@ class _NewCMCStepOnePageState extends State { return mDivider(Colors.grey); }, itemCount: widget.model.cmcAllServicesList.length), - Card( - shape: cardRadius(12), - elevation: 4, - child: Container( - width: double.infinity, - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Padding( - padding: const EdgeInsets.only(left: 12, right: 12, top: 12), - child: Text( - TranslationBase.of(context).coveredService, - style: TextStyle( - fontSize: 14, - fontWeight: FontWeight.w600, - letterSpacing: -0.45, - ), - ), - ), - ListView.separated( - itemBuilder: (context, index) { - return Padding( - padding: const EdgeInsets.all(12.0), - child: Text( - widget.model.checkupItems[index].itemName, - style: TextStyle( - fontSize: 12, - fontWeight: FontWeight.w600, - letterSpacing: -0.45, - ), - ), - ); - }, - separatorBuilder: (context, index) { - return mDivider(Colors.grey); - }, - physics: NeverScrollableScrollPhysics(), - shrinkWrap: true, - itemCount: widget.model.checkupItems.length, - ), - ], - ), - ), - ), + Image.asset(projectViewModel.isArabic?"assets/images/cc_ar.png":"assets/images/cc_en.png",width: double.infinity,), + // Card( + // shape: cardRadius(12), + // elevation: 4, + // child: Container( + // width: double.infinity, + // child: Column( + // crossAxisAlignment: CrossAxisAlignment.start, + // children: [ + // Padding( + // padding: const EdgeInsets.only(left: 12, right: 12, top: 12), + // child: Text( + // TranslationBase.of(context).coveredService, + // style: TextStyle( + // fontSize: 14, + // fontWeight: FontWeight.w600, + // letterSpacing: -0.45, + // ), + // ), + // ), + // ListView.separated( + // itemBuilder: (context, index) { + // return Padding( + // padding: const EdgeInsets.all(12.0), + // child: Text( + // widget.model.checkupItems[index].itemName, + // style: TextStyle( + // fontSize: 12, + // fontWeight: FontWeight.w600, + // letterSpacing: -0.45, + // ), + // ), + // ); + // }, + // separatorBuilder: (context, index) { + // return mDivider(Colors.grey); + // }, + // physics: NeverScrollableScrollPhysics(), + // shrinkWrap: true, + // itemCount: widget.model.checkupItems.length, + // ), + // ], + // ), + // ), + // ), ], ), ),