|
|
|
|
@ -29,12 +29,12 @@ class WorkingTimeTile extends StatelessWidget {
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: AppColor.fieldBgColor(context),
|
|
|
|
|
borderRadius: BorderRadius.circular(10),
|
|
|
|
|
boxShadow: [
|
|
|
|
|
BoxShadow(
|
|
|
|
|
color: Colors.black.withOpacity(0.05),
|
|
|
|
|
blurRadius: 10,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
// boxShadow: [
|
|
|
|
|
// BoxShadow(
|
|
|
|
|
// color: Colors.black.withOpacity(0.05),
|
|
|
|
|
// blurRadius: 10,
|
|
|
|
|
// )
|
|
|
|
|
// ],
|
|
|
|
|
),
|
|
|
|
|
child: Row(
|
|
|
|
|
children: [
|
|
|
|
|
@ -68,8 +68,7 @@ class WorkingTimeTile extends StatelessWidget {
|
|
|
|
|
borderRadius: BorderRadius.vertical(top: Radius.circular(20)),
|
|
|
|
|
),
|
|
|
|
|
clipBehavior: Clip.antiAliasWithSaveLayer,
|
|
|
|
|
builder: (BuildContext context) =>
|
|
|
|
|
TotalWorkingTimeDetailBottomSheet(timerList: timerList),
|
|
|
|
|
builder: (BuildContext context) => TotalWorkingTimeDetailBottomSheet(timerList: timerList),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|