|
|
|
|
@ -59,7 +59,7 @@ class MyScheduleWidget extends StatelessWidget {
|
|
|
|
|
if (DateUtils.isToday(workingHoursTable.date))
|
|
|
|
|
AppText(
|
|
|
|
|
"Today",
|
|
|
|
|
fontSize: 2.5 * SizeConfig.textMultiplier,
|
|
|
|
|
fontSize: 1.8 * SizeConfig.textMultiplier,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
color: Colors.green[500],
|
|
|
|
|
// fontSize: 18
|
|
|
|
|
@ -72,10 +72,17 @@ class MyScheduleWidget extends StatelessWidget {
|
|
|
|
|
children: workingHours.map((work) {
|
|
|
|
|
return Container(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 5,
|
|
|
|
|
),
|
|
|
|
|
if(workingHoursTable.clinicName!=null)
|
|
|
|
|
AppText(
|
|
|
|
|
workingHoursTable.clinicName??"",
|
|
|
|
|
fontSize: 15,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
width: MediaQuery.of(context).size.width*0.55,
|
|
|
|
|
child: AppText(
|
|
|
|
|
@ -83,7 +90,13 @@ class MyScheduleWidget extends StatelessWidget {
|
|
|
|
|
fontSize: 15,
|
|
|
|
|
fontWeight: FontWeight.w300,
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
if(workingHoursTable.projectName!=null)
|
|
|
|
|
AppText(
|
|
|
|
|
workingHoursTable.projectName??"",
|
|
|
|
|
fontSize: 15,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|