File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class GhUsersScreen extends StatelessWidget {
107
107
color: theme.palette.secondaryText,
108
108
),
109
109
SizedBox (width: 4 ),
110
- Text (company),
110
+ Expanded (child : Text (company, overflow : TextOverflow .ellipsis) ),
111
111
],
112
112
);
113
113
}
@@ -120,7 +120,7 @@ class GhUsersScreen extends StatelessWidget {
120
120
color: theme.palette.secondaryText,
121
121
),
122
122
SizedBox (width: 4 ),
123
- Text (location),
123
+ Expanded (child : Text (location, overflow : TextOverflow .ellipsis) ),
124
124
],
125
125
);
126
126
}
@@ -132,7 +132,9 @@ class GhUsersScreen extends StatelessWidget {
132
132
color: theme.palette.secondaryText,
133
133
),
134
134
SizedBox (width: 4 ),
135
- Text ('Joined on ${dateFormat .format (createdAt )}' ),
135
+ Expanded (
136
+ child: Text ('Joined on ${dateFormat .format (createdAt )}' ,
137
+ overflow: TextOverflow .ellipsis)),
136
138
],
137
139
);
138
140
}
You can’t perform that action at this time.
0 commit comments