diff --git a/lib/view/employees/employees_screen.dart b/lib/view/employees/employees_screen.dart index 87d1882..3f8376f 100644 --- a/lib/view/employees/employees_screen.dart +++ b/lib/view/employees/employees_screen.dart @@ -268,16 +268,21 @@ class _EmployeesScreenState extends State with UIMixin { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - Row( + Wrap( + crossAxisAlignment: WrapCrossAlignment.center, + spacing: 6, children: [ MyText.titleMedium( employee.name, fontWeight: 600, + overflow: TextOverflow.visible, + maxLines: null, ), - const SizedBox(width: 6), MyText.titleSmall( '(${employee.jobRole})', fontWeight: 400, + overflow: TextOverflow.visible, + maxLines: null, ), ], ),