diff --git a/lib/screens/gh_users.dart b/lib/screens/gh_users.dart index 7a943a9..9b5fbb0 100644 --- a/lib/screens/gh_users.dart +++ b/lib/screens/gh_users.dart @@ -107,7 +107,7 @@ class GhUsersScreen extends StatelessWidget { color: theme.palette.secondaryText, ), SizedBox(width: 4), - Text(company), + Expanded(child: Text(company, overflow: TextOverflow.ellipsis)), ], ); } @@ -120,7 +120,7 @@ class GhUsersScreen extends StatelessWidget { color: theme.palette.secondaryText, ), SizedBox(width: 4), - Text(location), + Expanded(child: Text(location, overflow: TextOverflow.ellipsis)), ], ); } @@ -132,7 +132,9 @@ class GhUsersScreen extends StatelessWidget { color: theme.palette.secondaryText, ), SizedBox(width: 4), - Text('Joined on ${dateFormat.format(createdAt)}'), + Expanded( + child: Text('Joined on ${dateFormat.format(createdAt)}', + overflow: TextOverflow.ellipsis)), ], ); }