|
|
|
|
@ -133,25 +133,32 @@ class SelectedItemSheet extends StatelessWidget {
|
|
|
|
|
return Container(
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
borderRadius: BorderRadius.circular(15),
|
|
|
|
|
color: Color(0xffF7F7F7),
|
|
|
|
|
color: const Color(0xffF7F7F7),
|
|
|
|
|
border: Border.all(
|
|
|
|
|
color: Color(0xffefefef),
|
|
|
|
|
color: const Color(0xffefefef),
|
|
|
|
|
width: 1,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
padding: EdgeInsets.only(top: 16, bottom: 16, left: 21, right: 21),
|
|
|
|
|
padding: const EdgeInsets.only(top: 16, bottom: 16, left: 21, right: 21),
|
|
|
|
|
child: Row(
|
|
|
|
|
children: [
|
|
|
|
|
(actionHistoryList != null && actionHistoryList!.eMPLOYEEIMAGE != null)
|
|
|
|
|
(isFav != null && isFav)
|
|
|
|
|
? CircularAvatar(
|
|
|
|
|
height: 30,
|
|
|
|
|
width: 30,
|
|
|
|
|
height: 40,
|
|
|
|
|
width: 40,
|
|
|
|
|
url: favoriteReplacements != null ? favoriteReplacements!.employeeImage : actionHistoryList!.eMPLOYEEIMAGE,
|
|
|
|
|
isImageBase64: true,
|
|
|
|
|
)
|
|
|
|
|
: (actionHistoryList != null && actionHistoryList!.eMPLOYEEIMAGE != null)
|
|
|
|
|
? CircularAvatar(
|
|
|
|
|
height: 40,
|
|
|
|
|
width: 40,
|
|
|
|
|
url: actionHistoryList!.eMPLOYEEIMAGE,
|
|
|
|
|
isImageBase64: true,
|
|
|
|
|
)
|
|
|
|
|
: CircularAvatar(
|
|
|
|
|
height: 30,
|
|
|
|
|
width: 30,
|
|
|
|
|
height: 40,
|
|
|
|
|
width: 40,
|
|
|
|
|
),
|
|
|
|
|
16.width,
|
|
|
|
|
Expanded(
|
|
|
|
|
|