pull/67/head
haroon amjad 4 weeks ago
parent 1d22e53f63
commit 5e000db556

@ -16,6 +16,7 @@ import 'package:hmg_patient_app_new/theme/colors.dart';
import 'package:hmg_patient_app_new/widgets/appbar/collapsing_list_view.dart'; import 'package:hmg_patient_app_new/widgets/appbar/collapsing_list_view.dart';
import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart'; import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
import 'package:hmg_patient_app_new/widgets/chip/app_custom_chip_widget.dart'; import 'package:hmg_patient_app_new/widgets/chip/app_custom_chip_widget.dart';
import 'package:lottie/lottie.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import 'package:url_launcher/url_launcher.dart'; import 'package:url_launcher/url_launcher.dart';
@ -121,6 +122,7 @@ class _ImmediateLiveCarePendingRequestPageState extends State<ImmediateLiveCareP
textColor: AppColors.alertColor, textColor: AppColors.alertColor,
), ),
Utils.buildSvgWithAssets(icon: AppAssets.waiting_icon, width: 24.h, height: 24.h), Utils.buildSvgWithAssets(icon: AppAssets.waiting_icon, width: 24.h, height: 24.h),
// Lottie.asset(AppAnimations.pending_loading_animation, repeat: true, reverse: false, frameRate: FrameRate(60), width: 80.h, height: 80.h, fit: BoxFit.cover),
], ],
), ),
SizedBox(height: 8.h), SizedBox(height: 8.h),

@ -339,7 +339,7 @@ class _LandingPageState extends State<LandingPage> {
SizedBox(height: 12.h), SizedBox(height: 12.h),
], ],
) )
: SizedBox.shrink(); : SizedBox(height: 12.h);
}), }),
Row( Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,

@ -121,11 +121,12 @@ class MedicalFileAppointmentCard extends StatelessWidget {
child: Padding( child: Padding(
padding: EdgeInsets.all(10.h), padding: EdgeInsets.all(10.h),
child: Transform.flip( child: Transform.flip(
flipX: appState.isArabic() ? true : false, flipX: appState.isArabic(),
child: Utils.buildSvgWithAssets( child: Utils.buildSvgWithAssets(
icon: AppAssets.forward_arrow_icon, iconColor: AppColors.whiteColor,
width: 10.h, icon: AppAssets.forward_arrow_icon_small,
height: 10.h, width: 40.h,
height: 40.h,
fit: BoxFit.contain, fit: BoxFit.contain,
), ),
), ),

@ -142,9 +142,10 @@ class PatientSickLeaveCard extends StatelessWidget {
child: Transform.flip( child: Transform.flip(
flipX: _appState.isArabic() ? true : false, flipX: _appState.isArabic() ? true : false,
child: Utils.buildSvgWithAssets( child: Utils.buildSvgWithAssets(
icon: AppAssets.forward_arrow_icon, icon: AppAssets.forward_arrow_icon_small,
width: 10.h, iconColor: AppColors.whiteColor,
height: 10.h, width: 40.h,
height: 40.h,
fit: BoxFit.contain, fit: BoxFit.contain,
), ),
), ),

Loading…
Cancel
Save