Row( children: [ Container( padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 3), decoration: BoxDecoration( color: gradeColor.withValues(alpha: 0.15), borderRadius: BorderRadius.circular(6), ), child: Text( staff.grade, style: TextStyle( fontSize: 11, fontWeight: FontWeight.bold, color: gradeColor, ), ), ), const SizedBox(width: 8), Expanded( child: Text( staff.officialPosition ?? 'Service Scheme', style: TextStyle( fontSize: 13, color: Colors.grey.shade600, ), overflow: TextOverflow.ellipsis, ), ), ], ),