shift start time and end time improvement.

design_3.0_rota_module
Sikander Saleem 3 weeks ago
parent c377c67f40
commit 786d89404e

@ -281,11 +281,11 @@ class _ProfilePageState extends State<ProfilePage> {
)
else ...[
Text(
'Shift Start Time: ${snapshot.data!.shiftActualStartDatetime?.chatMsgTime ?? "-"}',
'Shift Start Time: ${snapshot.data!.shiftName?.split('-').first.trim() ?? "-"}',
style: AppTextStyles.bodyText.copyWith(color: context.isDark ? AppColor.neutral10 : AppColor.neutral120),
),
Text(
'Shift Start Time: ${snapshot.data!.shiftActualEndDateTime?.chatMsgTime ?? "-"}',
'Shift End Time: ${snapshot.data!.shiftName?.split('-').last.trim() ?? "-"}',
style: AppTextStyles.bodyText.copyWith(color: context.isDark ? AppColor.neutral10 : AppColor.neutral120),
),
const Divider().defaultStyle(context),

Loading…
Cancel
Save