|
|
|
|
@ -41,24 +41,28 @@ class MyScheduleWidget extends StatelessWidget {
|
|
|
|
|
? AppDateUtils.getWeekDayArabic(
|
|
|
|
|
workingHoursTable.date.weekday)
|
|
|
|
|
: AppDateUtils.getWeekDay(workingHoursTable.date.weekday),
|
|
|
|
|
fontSize: MediaQuery.of(context).size.width*0.032,
|
|
|
|
|
//fontSize: MediaQuery.of(context).size.width*0.032,
|
|
|
|
|
fontSize: 13,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
// fontSize: 18
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
letterSpacing: -0.52,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
' ${workingHoursTable.date.day} ${(AppDateUtils.getMonth(workingHoursTable.date.month).toString().substring(0, 3))}',
|
|
|
|
|
fontSize: MediaQuery.of(context).size.width*0.05,
|
|
|
|
|
//fontSize: MediaQuery.of(context).size.width*0.05,
|
|
|
|
|
fontSize: 18,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
// fontSize: 18
|
|
|
|
|
letterSpacing: -0.72,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
width: MediaQuery.of(context).size.width * 0.65,
|
|
|
|
|
// width: SizeConfig.getWidthMultiplier()*64,
|
|
|
|
|
// height: SizeConfig.getHeightMultiplier()*18,
|
|
|
|
|
//width: MediaQuery.of(context).size.width * 0.65,
|
|
|
|
|
width: 257,
|
|
|
|
|
height: 108,
|
|
|
|
|
//height: MediaQuery.of(context).size.height * 0.20,
|
|
|
|
|
child: CardWithBgWidget(
|
|
|
|
|
marginSymmetric: 7,
|
|
|
|
|
hasBorder: false,
|
|
|
|
|
@ -77,10 +81,7 @@ class MyScheduleWidget extends StatelessWidget {
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
color: AppGlobal.appGreenColor,
|
|
|
|
|
// fontSize: 18
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: workingHours.map((work) {
|
|
|
|
|
|