|
|
|
|
@ -160,7 +160,9 @@ Widget noPatientInQueue({required ScreenOrientationEnum screenOrientationEnum})
|
|
|
|
|
child: AppText(
|
|
|
|
|
"Awaiting Patients Arrival",
|
|
|
|
|
fontFamily: 'Poppins-SemiBold.ttf',
|
|
|
|
|
fontSize: (screenOrientationEnum == ScreenOrientationEnum.portraitDown || screenOrientationEnum == ScreenOrientationEnum.portraitUp) ? SizeConfig.getWidthMultiplier() * 9 : SizeConfig.getWidthMultiplier() * 7,
|
|
|
|
|
fontSize: (screenOrientationEnum == ScreenOrientationEnum.portraitDown || screenOrientationEnum == ScreenOrientationEnum.portraitUp)
|
|
|
|
|
? SizeConfig.getWidthMultiplier() * 9
|
|
|
|
|
: SizeConfig.getWidthMultiplier() * 7,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
@ -353,5 +355,7 @@ Widget priorityTicketsWithSideList({required List<PatientTicketModel> tickets, r
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
];
|
|
|
|
|
return (appProvider.currentScreenRotation == ScreenOrientationEnum.portraitUp || appProvider.currentScreenRotation == ScreenOrientationEnum.portraitDown) ? Row(children: children) : Column(children: children);
|
|
|
|
|
return (appProvider.currentScreenRotation == ScreenOrientationEnum.portraitUp || appProvider.currentScreenRotation == ScreenOrientationEnum.portraitDown)
|
|
|
|
|
? Row(children: children)
|
|
|
|
|
: Column(children: children);
|
|
|
|
|
}
|
|
|
|
|
|