|  |  |  | @ -67,23 +67,25 @@ class _EmployeeDetailsState extends State<EmployeeDetails> { | 
		
	
		
			
				|  |  |  |  |     } | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |     return Scaffold( | 
		
	
		
			
				|  |  |  |  |         extendBody: true, | 
		
	
		
			
				|  |  |  |  |         backgroundColor: MyColors.lightGreyEFColor, | 
		
	
		
			
				|  |  |  |  |         body: Stack(children: [ | 
		
	
		
			
				|  |  |  |  |           getEmployeeSubordinates!.eMPLOYEEIMAGE != null ? | 
		
	
		
			
				|  |  |  |  |           Container( | 
		
	
		
			
				|  |  |  |  |             height: 200, | 
		
	
		
			
				|  |  |  |  |             margin: EdgeInsets.only(top: 30), | 
		
	
		
			
				|  |  |  |  |             decoration: BoxDecoration(image: DecorationImage(image: MemoryImage(Utils.dataFromBase64String(getEmployeeSubordinates!.eMPLOYEEIMAGE!)), fit: BoxFit.cover)), | 
		
	
		
			
				|  |  |  |  |             child: new BackdropFilter( | 
		
	
		
			
				|  |  |  |  |               filter: new ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0), | 
		
	
		
			
				|  |  |  |  |               child: new Container( | 
		
	
		
			
				|  |  |  |  |                 decoration: new BoxDecoration(color: Colors.white.withOpacity(0.0)), | 
		
	
		
			
				|  |  |  |  |               ), | 
		
	
		
			
				|  |  |  |  |             ), | 
		
	
		
			
				|  |  |  |  |           ) : Container( | 
		
	
		
			
				|  |  |  |  |             decoration: BoxDecoration(color: Colors.white.withOpacity(0.0)), | 
		
	
		
			
				|  |  |  |  |           ), | 
		
	
		
			
				|  |  |  |  |       extendBody: true, | 
		
	
		
			
				|  |  |  |  |       backgroundColor: MyColors.lightGreyEFColor, | 
		
	
		
			
				|  |  |  |  |       body: Stack( | 
		
	
		
			
				|  |  |  |  |         children: [ | 
		
	
		
			
				|  |  |  |  |           getEmployeeSubordinates!.eMPLOYEEIMAGE != null | 
		
	
		
			
				|  |  |  |  |               ? Container( | 
		
	
		
			
				|  |  |  |  |                   height: 200, | 
		
	
		
			
				|  |  |  |  |                   margin: EdgeInsets.only(top: 30), | 
		
	
		
			
				|  |  |  |  |                   decoration: BoxDecoration(image: DecorationImage(image: MemoryImage(Utils.dataFromBase64String(getEmployeeSubordinates!.eMPLOYEEIMAGE!)), fit: BoxFit.cover)), | 
		
	
		
			
				|  |  |  |  |                   child: new BackdropFilter( | 
		
	
		
			
				|  |  |  |  |                     filter: new ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0), | 
		
	
		
			
				|  |  |  |  |                     child: new Container( | 
		
	
		
			
				|  |  |  |  |                       decoration: new BoxDecoration(color: Colors.white.withOpacity(0.0)), | 
		
	
		
			
				|  |  |  |  |                     ), | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                 ) | 
		
	
		
			
				|  |  |  |  |               : Container( | 
		
	
		
			
				|  |  |  |  |                   decoration: BoxDecoration(color: Colors.white.withOpacity(0.0)), | 
		
	
		
			
				|  |  |  |  |                 ), | 
		
	
		
			
				|  |  |  |  |           SingleChildScrollView( | 
		
	
		
			
				|  |  |  |  |             scrollDirection: Axis.vertical, | 
		
	
		
			
				|  |  |  |  |             child: Column( | 
		
	
	
		
			
				
					|  |  |  | @ -95,15 +97,13 @@ class _EmployeeDetailsState extends State<EmployeeDetails> { | 
		
	
		
			
				|  |  |  |  |                   child: Row( | 
		
	
		
			
				|  |  |  |  |                     mainAxisAlignment: MainAxisAlignment.start, | 
		
	
		
			
				|  |  |  |  |                     children: [ | 
		
	
		
			
				|  |  |  |  |                       IconButton( | 
		
	
		
			
				|  |  |  |  |                         onPressed: () { | 
		
	
		
			
				|  |  |  |  |                           Navigator.pop(context); | 
		
	
		
			
				|  |  |  |  |                         }, | 
		
	
		
			
				|  |  |  |  |                         icon: Icon( | 
		
	
		
			
				|  |  |  |  |                           Icons.arrow_back_ios, | 
		
	
		
			
				|  |  |  |  |                           color: Colors.white, | 
		
	
		
			
				|  |  |  |  |                         ), | 
		
	
		
			
				|  |  |  |  |                       ), | 
		
	
		
			
				|  |  |  |  |                       CircleAvatar( | 
		
	
		
			
				|  |  |  |  |                         radius: 18, | 
		
	
		
			
				|  |  |  |  |                         backgroundColor: Colors.black.withOpacity(.21), | 
		
	
		
			
				|  |  |  |  |                         child: const Icon(Icons.arrow_back_ios_rounded, color: Colors.white, size: 18).paddingOnly(right: 4), | 
		
	
		
			
				|  |  |  |  |                       ).onPress(() { | 
		
	
		
			
				|  |  |  |  |                         Navigator.pop(context); | 
		
	
		
			
				|  |  |  |  |                       }), | 
		
	
		
			
				|  |  |  |  |                     ], | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |                 ), | 
		
	
	
		
			
				
					|  |  |  | @ -111,7 +111,9 @@ class _EmployeeDetailsState extends State<EmployeeDetails> { | 
		
	
		
			
				|  |  |  |  |               ], | 
		
	
		
			
				|  |  |  |  |             ), | 
		
	
		
			
				|  |  |  |  |           ) | 
		
	
		
			
				|  |  |  |  |         ])); | 
		
	
		
			
				|  |  |  |  |         ], | 
		
	
		
			
				|  |  |  |  |       ), | 
		
	
		
			
				|  |  |  |  |     ); | 
		
	
		
			
				|  |  |  |  |   } | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |   Widget myTeamInfo() { | 
		
	
	
		
			
				
					|  |  |  | @ -202,16 +204,8 @@ class _EmployeeDetailsState extends State<EmployeeDetails> { | 
		
	
		
			
				|  |  |  |  |   } | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |   Widget ProfileImage() => getEmployeeSubordinates?.eMPLOYEEIMAGE == null | 
		
	
		
			
				|  |  |  |  |       ? SvgPicture.asset( | 
		
	
		
			
				|  |  |  |  |           "assets/images/user.svg", | 
		
	
		
			
				|  |  |  |  |           height: 68, | 
		
	
		
			
				|  |  |  |  |           width: 68, | 
		
	
		
			
				|  |  |  |  |         ) | 
		
	
		
			
				|  |  |  |  |       : CircleAvatar( | 
		
	
		
			
				|  |  |  |  |           radius: 68, | 
		
	
		
			
				|  |  |  |  |           backgroundImage: MemoryImage(Utils.getPostBytes(getEmployeeSubordinates?.eMPLOYEEIMAGE)), | 
		
	
		
			
				|  |  |  |  |           backgroundColor: Colors.black, | 
		
	
		
			
				|  |  |  |  |         ); | 
		
	
		
			
				|  |  |  |  |       ? SvgPicture.asset("assets/images/user.svg", height: 68, width: 68) | 
		
	
		
			
				|  |  |  |  |       : CircleAvatar(radius: 68, backgroundImage: MemoryImage(Utils.getPostBytes(getEmployeeSubordinates?.eMPLOYEEIMAGE)), backgroundColor: Colors.black); | 
		
	
		
			
				|  |  |  |  | 
 | 
		
	
		
			
				|  |  |  |  |   void setMenu() { | 
		
	
		
			
				|  |  |  |  |     menu = [ | 
		
	
	
		
			
				
					|  |  |  | @ -256,16 +250,17 @@ class _EmployeeDetailsState extends State<EmployeeDetails> { | 
		
	
		
			
				|  |  |  |  |         child: Column( | 
		
	
		
			
				|  |  |  |  |           children: [ | 
		
	
		
			
				|  |  |  |  |             Text(LocaleKeys.addFavoriteList).tr(namedArgs: {'name': '${getEmployeeSubordinates!.eMPLOYEENAME}'}), | 
		
	
		
			
				|  |  |  |  |             getEmployeeSubordinates!.eMPLOYEEIMAGE  == null | 
		
	
		
			
				|  |  |  |  |             ? SvgPicture.asset( | 
		
	
		
			
				|  |  |  |  |           "assets/images/user.svg", | 
		
	
		
			
				|  |  |  |  |           height: 68, | 
		
	
		
			
				|  |  |  |  |           width: 68,) | 
		
	
		
			
				|  |  |  |  |             : CircleAvatar( | 
		
	
		
			
				|  |  |  |  |           radius: 68, | 
		
	
		
			
				|  |  |  |  |           backgroundImage: MemoryImage(Utils.dataFromBase64String(getEmployeeSubordinates!.eMPLOYEEIMAGE!)), | 
		
	
		
			
				|  |  |  |  |           backgroundColor: Colors.black, | 
		
	
		
			
				|  |  |  |  |         ), | 
		
	
		
			
				|  |  |  |  |             getEmployeeSubordinates!.eMPLOYEEIMAGE == null | 
		
	
		
			
				|  |  |  |  |                 ? SvgPicture.asset( | 
		
	
		
			
				|  |  |  |  |                     "assets/images/user.svg", | 
		
	
		
			
				|  |  |  |  |                     height: 68, | 
		
	
		
			
				|  |  |  |  |                     width: 68, | 
		
	
		
			
				|  |  |  |  |                   ) | 
		
	
		
			
				|  |  |  |  |                 : CircleAvatar( | 
		
	
		
			
				|  |  |  |  |                     radius: 68, | 
		
	
		
			
				|  |  |  |  |                     backgroundImage: MemoryImage(Utils.dataFromBase64String(getEmployeeSubordinates!.eMPLOYEEIMAGE!)), | 
		
	
		
			
				|  |  |  |  |                     backgroundColor: Colors.black, | 
		
	
		
			
				|  |  |  |  |                   ), | 
		
	
		
			
				|  |  |  |  |             // Image.memory( | 
		
	
		
			
				|  |  |  |  |             //   Utils.getPostBytes( | 
		
	
		
			
				|  |  |  |  |             //     getEmployeeSubordinates!.eMPLOYEEIMAGE ?? "", | 
		
	
	
		
			
				
					|  |  |  | 
 |